From 68dd5205180fb4bc67a435a8c23569aef519ad5b Mon Sep 17 00:00:00 2001 From: William Lorey Date: Mon, 12 Apr 2021 14:23:27 -0700 Subject: [PATCH 1/7] Select entire line when clicking GitHub config --- src/commands/openYAMLConfigFile.ts | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/commands/openYAMLConfigFile.ts b/src/commands/openYAMLConfigFile.ts index 81d0ad197..1e1ebab9a 100644 --- a/src/commands/openYAMLConfigFile.ts +++ b/src/commands/openYAMLConfigFile.ts @@ -4,7 +4,7 @@ *--------------------------------------------------------------------------------------------*/ import { basename } from 'path'; -import { Position, Range, TextDocument, window, workspace } from "vscode"; +import { Position, Range, TextDocument, TextLine, window, workspace } from "vscode"; import { IActionContext, IAzureQuickPickItem } from "vscode-azureextensionui"; import { ext } from "../extensionVariables"; import { EnvironmentTreeItem } from "../tree/EnvironmentTreeItem"; @@ -47,12 +47,13 @@ export async function openYAMLConfigFile(context: IActionContext, node?: StaticW async function getSelection(configDocument: TextDocument, buildConfigToSelect: BuildConfig): Promise { const configRegex: RegExp = new RegExp(`${buildConfigToSelect}:`); + const offset: number = configDocument.getText().search(configRegex); - let offset: number = configDocument.getText().search(configRegex); - // Shift the offset to the beginning of the build config's value - offset += `${buildConfigToSelect}: `.length; + if (offset === -1) { + return undefined; + } const position: Position = configDocument.positionAt(offset); - const configValueRegex: RegExp = /['"].*['"]/; - return configDocument.getWordRangeAtPosition(position, configValueRegex); + const line: TextLine = configDocument.lineAt(position); + return line.range; } From 4f3e9670b97220a598b9c52d90927c75232fc3fb Mon Sep 17 00:00:00 2001 From: William Lorey Date: Thu, 15 Apr 2021 17:28:38 -0700 Subject: [PATCH 2/7] Use yaml package to parse workflow file, add tests --- .gitignore | 1 - CHANGELOG.md | 11 +- CODE_OF_CONDUCT.md | 9 + NOTICE.html | 10024 ++++++++-------- SECURITY.md | 41 + extension.bundle.ts | 2 + main.js | 4 +- package-lock.json | 4 +- package.json | 2 +- resources/Azure-Static-Apps-Environment.svg | 20 +- resources/azure-staticwebapps.png | Bin 14170 -> 6736 bytes resources/azure-staticwebapps.svg | 28 +- src/commands/openYAMLConfigFile.ts | 71 +- test/global.test.ts | 7 - test/selectBuildConfigs.test.ts | 63 + test/test.code-workspace | 2 +- .../testWorkflows/workflow-duplicates.yml | 67 + .../testWorkflows/workflow-funky.yml | 45 + .../testWorkflows/workflow-old.yml | 45 + .../testWorkflows/workflow-simple.yml | 45 + test/utils/workspaceUtils.ts | 20 + 21 files changed, 5715 insertions(+), 4796 deletions(-) create mode 100644 CODE_OF_CONDUCT.md create mode 100644 SECURITY.md create mode 100644 test/selectBuildConfigs.test.ts create mode 100644 test/testWorkspace/testWorkflows/workflow-duplicates.yml create mode 100644 test/testWorkspace/testWorkflows/workflow-funky.yml create mode 100644 test/testWorkspace/testWorkflows/workflow-old.yml create mode 100644 test/testWorkspace/testWorkflows/workflow-simple.yml create mode 100644 test/utils/workspaceUtils.ts diff --git a/.gitignore b/.gitignore index c2ea7b37c..6149d6650 100644 --- a/.gitignore +++ b/.gitignore @@ -63,7 +63,6 @@ bin obj *.vsix .vscode-test -testWorkspace test-results.xml dist stats.json diff --git a/CHANGELOG.md b/CHANGELOG.md index 67cae40b4..9441c1c43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,18 +1,19 @@ # Change Log -## Unreleased +## 0.6.0 - 2021-04-13 ### Added - Now depends on the "Azure Resources" extension, which provides a "Resource Groups" and "Help and Feedback" view +- IntelliSense for `staticwebapp.config.json` file +- Experimental framework to test incremental changes ### Changed - "Report an Issue" button was removed from errors. Use the "Help and Feedback" view or command palette instead - Minimum version of VS Code is now 1.53.0 - Icons updated to match VS Code's theme. Install new product icon themes [here](https://marketplace.visualstudio.com/search?term=tag%3Aproduct-icon-theme&target=VSCode) +- Build presets pre-generate values for app, api, and output locations that must be confirmed -## 0.5.1 - 2021-04-12 - -### Added -- Experimental framework to test incremental changes +### Fixed +- [Bugs fixed](https://github.com/microsoft/vscode-azurestaticwebapps/milestone/8?closed=1) ## 0.5.0 - 2020-12-02 diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 000000000..f9ba8cf65 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,9 @@ +# Microsoft Open Source Code of Conduct + +This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). + +Resources: + +- [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/) +- [Microsoft Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) +- Contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with questions or concerns diff --git a/NOTICE.html b/NOTICE.html index f8bf9df42..0cc1c0a96 100644 --- a/NOTICE.html +++ b/NOTICE.html @@ -34,7 +34,7 @@

NOTICES AND INFORMATION

  • - tslib 1.13.0 - 0BSD + tslib 1.11.2 - 0BSD

    https://www.typescriptlang.org/

    • Copyright (c) Microsoft Corporation.
    @@ -57,7 +57,7 @@

    NOTICES AND INFORMATION

  • - tslib 1.11.2 - 0BSD + tslib 2.0.3 - 0BSD

    https://www.typescriptlang.org/

    • Copyright (c) Microsoft Corporation.
    @@ -80,7 +80,7 @@

    NOTICES AND INFORMATION

  • - tslib 2.0.1 - 0BSD + tslib 2.1.0 - 0BSD

    https://www.typescriptlang.org/

    • Copyright (c) Microsoft Corporation.
    @@ -100,18 +100,6 @@

    NOTICES AND INFORMATION

  • -
  • -
    - - json-schema 0.2.3 - AFL-2.1 OR BSD-3-Clause - -

    https://github.com/kriszyp/json-schema#readme

    -
    • Copyright (c) 2007 Kris Zyp SitePen (www.sitepen.com)
    -
    -        AFL-2.1 OR BSD-3-Clause
    -        
    -
    -
  • @@ -542,10 +530,10 @@

    NOTICES AND INFORMATION

  • - @opentelemetry/api 0.6.1 - Apache-2.0 + @opentelemetry/context-base 0.10.2 - Apache-2.0

    https://github.com/open-telemetry/opentelemetry-js#readme

    -
    • Copyright 2019, OpenTelemetry
    +
                                              Apache License
                                Version 2.0, January 2004
    @@ -755,10 +743,10 @@ 

    NOTICES AND INFORMATION

  • - @opentelemetry/context-base 0.6.1 - Apache-2.0 + before-after-hook 2.1.0 - Apache-2.0 -

    https://github.com/open-telemetry/opentelemetry-js#readme

    -
    • Copyright 2019, OpenTelemetry
    +

    https://github.com/gr2m/before-after-hook#readme

    +
    • Copyright 2018 Gregor Martynus and other contributors.
                                              Apache License
                                Version 2.0, January 2004
    @@ -940,7 +928,7 @@ 

    NOTICES AND INFORMATION

    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 "[]" + 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 @@ -948,7 +936,7 @@

    NOTICES AND INFORMATION

    same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2018 Gregor Martynus and other contributors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -968,212 +956,226 @@

    NOTICES AND INFORMATION

  • - @opentelemetry/context-base 0.10.2 - Apache-2.0 + websocket 1.0.32 - Apache-2.0 -

    https://github.com/open-telemetry/opentelemetry-js#readme

    +

    https://github.com/theturtle32/WebSocket-Node

    -                                         Apache License
    -                           Version 2.0, January 2004
    -                        http://www.apache.org/licenses/
    +        
    +                              Apache License
    +                        Version 2.0, January 2004
    +                     http://www.apache.org/licenses/
     
    -   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
     
    -   1. Definitions.
    +1. Definitions.
     
    -      "License" shall mean the terms and conditions for use, reproduction,
    -      and distribution as defined by Sections 1 through 9 of this document.
    +   "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.
    +   "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.
    +   "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.
    +   "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.
    +   "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.
    +   "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).
    +   "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.
    +   "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."
    +   "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.
    +   "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.
    +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.
    +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:
    +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
    +   (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
    +   (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
    +   (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.
    +   (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.
    +   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.
    +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.
    +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.
    +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.
    +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.
    +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
    +END OF TERMS AND CONDITIONS
     
    -   APPENDIX: How to apply the Apache License to your work.
    +        
    +
    +
  • +
  • +
    + + async-listener 0.6.10 - BSD-2-Clause + +

    https://github.com/othiym23/async-listener#readme

    +
    • Copyright (c) 2013-2017, Forrest L Norvell
    • +
    • Copyright Joyent, Inc. and other Node contributors.
    +
    +        BSD 2-Clause License
     
    -      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 (c) 2013-2017, Forrest L Norvell
    +All rights reserved.
     
    -   Copyright [yyyy] [name of copyright owner]
    +Redistribution and use in source and binary forms, with or without
    +modification, are permitted provided that the following conditions are met:
     
    -   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
    +* Redistributions of source code must retain the above copyright notice, this
    +  list of conditions and the following disclaimer.
     
    -       http://www.apache.org/licenses/LICENSE-2.0
    +* 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.
     
    -   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.
    +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.
     
             
    @@ -1181,212 +1183,136 @@

    NOTICES AND INFORMATION

  • - adal-node 0.1.28 - Apache-2.0 + cls-hooked 4.2.2 - BSD-2-Clause -

    https://github.com/AzureAD/azure-activedirectory-library-for-nodejs#readme

    -
    • Copyright (c) Microsoft Open Technologies, Inc.
    +

    https://github.com/jeff-lewis/cls-hooked#readme

    +
    • Copyright (c) 2013-2016, Forrest L Norvell <ogd@aoaioxxysz.net>
    -                                         Apache License
    -                           Version 2.0, January 2004
    -                        http://www.apache.org/licenses/
    -
    -   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +        Copyright (c) 2013-2016, Forrest L Norvell <ogd@aoaioxxysz.net>
    +All rights reserved.
     
    -   1. Definitions.
    +Redistribution and use in source and binary forms, with or without
    +modification, are permitted provided that the following conditions are met:
     
    -      "License" shall mean the terms and conditions for use, reproduction,
    -      and distribution as defined by Sections 1 through 9 of this document.
    +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.
     
    -      "Licensor" shall mean the copyright owner or entity authorized by
    -      the copyright owner that is granting the License.
    +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.
     
    -      "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.
    +        
    +
    +
  • +
  • +
    + + continuation-local-storage 3.2.1 - BSD-2-Clause + +

    https://github.com/othiym23/node-continuation-local-storage#readme

    +
    • Copyright (c) 2013-2016, Forrest L Norvell <ogd@aoaioxxysz.net>
    +
    +        Copyright (c) 2013-2016, Forrest L Norvell <ogd@aoaioxxysz.net>
    +All rights reserved.
     
    -      "You" (or "Your") shall mean an individual or Legal Entity
    -      exercising permissions granted by this License.
    +Redistribution and use in source and binary forms, with or without
    +modification, are permitted provided that the following conditions are met:
     
    -      "Source" form shall mean the preferred form for making modifications,
    -      including but not limited to software source code, documentation
    -      source, and configuration files.
    +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.
     
    -      "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.
    +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.
     
    -      "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).
    +        
    +
    +
  • +
  • +
    + + domelementtype 1.3.1 - BSD-2-Clause + +

    https://github.com/fb55/domelementtype#readme

    +
    • Copyright (c) Felix Bohm
    +
    +        Copyright (c) Felix Böhm
    +All rights reserved.
     
    -      "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.
    +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
     
    -      "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."
    +Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
     
    -      "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.
    +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.
     
    -   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.
    +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.
     
    -   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.
    +        
    +
    +
  • +
  • +
    + + domhandler 2.4.2 - BSD-2-Clause + +

    https://github.com/fb55/DomHandler#readme

    +
    • Copyright (c) Felix Bohm
    +
    +        Copyright (c) Felix Böhm
    +All rights reserved.
     
    -   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.
    +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
     
    -   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.
    +Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
     
    -   END OF TERMS AND CONDITIONS
    +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.
     
    -   APPENDIX: How to apply the Apache License to your work.
    +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.
     
    -      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.
    +        
    +
    +
  • +
  • +
    + + domutils 1.5.1 - BSD-2-Clause + +

    https://github.com/FB55/domutils

    +
    • Copyright (c) Felix Bohm
    +
    +        Copyright (c) Felix Böhm
    +All rights reserved.
     
    -   Copyright [yyyy] [name of copyright owner]
    +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
     
    -   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
    +Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
     
    -       http://www.apache.org/licenses/LICENSE-2.0
    +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.
     
    -   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.
    +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.
     
             
    @@ -1394,278 +1320,174 @@

    NOTICES AND INFORMATION

  • - aws-sign2 0.7.0 - Apache-2.0 + emitter-listener 1.1.2 - BSD-2-Clause -

    https://github.com/mikeal/aws-sign#readme

    -
    • Copyright 2010 LearnBoost <dev@learnboost.com>
    +

    https://github.com/othiym23/emitter-listener

    +
    -        Apache License
    +        Copyright (c) <year> <owner> . All rights reserved.
     
    -Version 2.0, January 2004
    +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
     
    -http://www.apache.org/licenses/
    +   1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
     
    -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +   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.
     
    -1. Definitions.
    +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.
    +        
    +
    +
  • +
  • +
    + + entities 1.1.2 - BSD-2-Clause + +

    https://github.com/fb55/entities#readme

    +
    • Copyright (c) Felix Bohm
    • +
    • (c) // http://mathiasbynens.be/notes/javascript-encoding
    +
    +        Copyright (c) Felix Böhm
    +All rights reserved.
     
    -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
    +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
     
    -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
    +Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
     
    -"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.
    +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.
     
    -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
    +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.
     
    -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
    +        
    +
    +
  • +
  • +
    + + shimmer 1.2.1 - BSD-2-Clause + +

    https://github.com/othiym23/shimmer#readme

    +
    • Copyright (c) 2013-2019, Forrest L Norvell
    +
    +        BSD 2-Clause License
     
    -"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.
    +Copyright (c) 2013-2019, Forrest L Norvell
    +All rights reserved.
     
    -"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).
    +Redistribution and use in source and binary forms, with or without
    +modification, are permitted provided that the following conditions are met:
     
    -"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.
    +* Redistributions of source code must retain the above copyright notice, this
    +  list of conditions and the following disclaimer.
     
    -"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."
    +* 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.
     
    -"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.
    +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.
     
    -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.
    +        
    +
    +
  • +
  • +
    + + source-map 0.5.7 - BSD-3-Clause + +

    https://github.com/mozilla/source-map

    +
    • Copyright 2011 The Closure Compiler
    • +
    • Copyright 2011 Mozilla Foundation and contributors
    • +
    • Copyright 2014 Mozilla Foundation and contributors
    • +
    • Copyright 2009-2011 Mozilla Foundation and contributors
    • +
    • Copyright (c) 2009-2011, Mozilla Foundation and contributors
    +
    +        
    +Copyright (c) 2009-2011, Mozilla Foundation and contributors
    +All rights reserved.
     
    -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.
    +Redistribution and use in source and binary forms, with or without
    +modification, are permitted provided that the following conditions are met:
     
    -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:
    +* Redistributions of source code must retain the above copyright notice, this
    +  list of conditions and the following disclaimer.
     
    -You must give any other recipients of the Work or Derivative Works a copy of this License; and
    +* 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.
     
    -You must cause any modified files to carry prominent notices stating that You changed the files; and
    +* 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.
     
    -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
    +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.
     
    -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.
    +        
    +
    +
  • +
  • +
    + + tough-cookie 3.0.1 - BSD-3-Clause + +

    https://github.com/salesforce/tough-cookie

    +
    • Copyright (c) 2015, Salesforce.com, Inc.
    • +
    • Copyright (c) 2018, Salesforce.com, Inc.
    +
    +        Copyright (c) 2015, Salesforce.com, Inc.
    +All rights reserved.
     
    -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.
    +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
     
    -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.
    +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
     
    -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.
    +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.
     
    -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.
    +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.
     
    -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.
    +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.
     
    -END OF TERMS AND CONDITIONS
             
  • - before-after-hook 2.1.0 - Apache-2.0 + tough-cookie 4.0.0 - BSD-3-Clause -

    https://github.com/gr2m/before-after-hook#readme

    -
    • Copyright 2018 Gregor Martynus and other contributors.
    +

    https://github.com/salesforce/tough-cookie

    +
    • Copyright (c) 2015, Salesforce.com, Inc.
    • +
    • Copyright (c) 2018, Salesforce.com, Inc.
    -                                         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.
    +        Copyright (c) 2015, Salesforce.com, Inc.
    +All rights reserved.
     
    -      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.
    +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
     
    -   Copyright 2018 Gregor Martynus and other contributors.
    +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
     
    -   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
    +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.
     
    -       http://www.apache.org/licenses/LICENSE-2.0
    +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.
     
    -   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.
    +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.
     
             
    @@ -1673,251 +1495,53 @@

    NOTICES AND INFORMATION

  • - caseless 0.12.0 - Apache-2.0 + d 1.0.1 - ISC -

    https://github.com/mikeal/caseless#readme

    - +

    https://github.com/medikoo/d#readme

    +
    • Copyright (c) 2013-2019, Mariusz Nowak, medikoo, medikoo.com
    -        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
    +        ISC License
    +
    +Copyright (c) 2013-2019, Mariusz Nowak, @medikoo, medikoo.com
    +
    +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.
    +
             
  • - ecdsa-sig-formatter 1.0.11 - Apache-2.0 + deprecation 2.3.1 - ISC -

    https://github.com/Brightspace/node-ecdsa-sig-formatter#readme

    -
    • Copyright 2015 D2L Corporation
    +

    https://github.com/gr2m/deprecation#readme

    +
    • Copyright (c) Gregor Martynus and contributors
    -        Apache License
    -                           Version 2.0, January 2004
    -                        http://www.apache.org/licenses/
    -
    -   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +        The ISC License
     
    -   1. Definitions.
    +Copyright (c) Gregor Martynus and contributors
     
    -      "License" shall mean the terms and conditions for use, reproduction,
    -      and distribution as defined by Sections 1 through 9 of this document.
    +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.
     
    -      "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 2015 D2L Corporation
    -
    -   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.
    +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.
     
             
    @@ -1925,452 +1549,468 @@

    NOTICES AND INFORMATION

  • - forever-agent 0.6.1 - Apache-2.0 + es5-ext 0.10.53 - ISC -

    https://github.com/mikeal/forever-agent

    - +

    https://github.com/medikoo/es5-ext#readme

    +
    • Copyright (c) 2008 Matsuza
    • +
    • Copyright (c) 2011-2019, Mariusz Nowak, medikoo, medikoo.com
    -        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
    +        ISC License
     
    -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
    +Copyright (c) 2011-2019, Mariusz Nowak, @medikoo, medikoo.com
     
    -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.
    +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.
     
    -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.
    +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.
     
    -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.
    +        
    +
    +
  • +
  • +
    + + es6-symbol 3.1.3 - ISC + +

    https://github.com/medikoo/es6-symbol#readme

    +
    • Copyright (c) 2013-2019, Mariusz Nowak, medikoo, medikoo.com
    +
    +        ISC License
     
    -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.
    +Copyright (c) 2013-2019, Mariusz Nowak, @medikoo, medikoo.com
     
    -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.
    +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.
     
    -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.
    +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.
     
    -END OF TERMS AND CONDITIONS
             
  • - oauth-sign 0.9.0 - Apache-2.0 + ext 1.4.0 - ISC -

    https://github.com/mikeal/oauth-sign#readme

    +
    • Copyright (c) 2011-2019, Mariusz Nowak, medikoo, medikoo.com
    -        Apache License
    +        ISC License
     
    -Version 2.0, January 2004
    +Copyright (c) 2011-2019, Mariusz Nowak, @medikoo, medikoo.com
     
    -http://www.apache.org/licenses/
    +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.
     
    -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.
    +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.
     
    -END OF TERMS AND CONDITIONS
             
  • - request 2.88.2 - Apache-2.0 + fastq 1.10.1 - ISC -

    https://github.com/request/request#readme

    -
    • Copyright 2010-2012 Mikeal Rogers
    +

    https://github.com/mcollina/fastq#readme

    +
    -        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.
    +        Copyright (c) 2015-2020, Matteo Collina <matteo.collina@gmail.com>
     
    -"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.
    +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.
     
    -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.
    +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.
     
    -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.
    +        
    +
    +
  • +
  • +
    + + fs.realpath 1.0.0 - ISC + +

    https://github.com/isaacs/fs.realpath#readme

    +
    • Copyright (c) Isaac Z. Schlueter and Contributors
    • +
    • Copyright Joyent, Inc. and other Node contributors.
    +
    +        The ISC License
     
    -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:
    +Copyright (c) Isaac Z. Schlueter and Contributors
     
    -You must give any other recipients of the Work or Derivative Works a copy of this License; and
    +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.
     
    -You must cause any modified files to carry prominent notices stating that You changed the files; and
    +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.
     
    -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.
    +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.
     
    -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.
    +Node's license follows, also included at the header of `old.js` which contains
    +the licensed code:
     
    -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.
    +  Copyright Joyent, Inc. and other Node contributors.
     
    -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.
    +  Permission is hereby granted, free of charge, to any person obtaining a
    +  copy of this software and associated documentation files (the "Software"),
    +  to deal in the Software without restriction, including without limitation
    +  the rights to use, copy, modify, merge, publish, distribute, sublicense,
    +  and/or sell copies of the Software, and to permit persons to whom the
    +  Software is furnished to do so, subject to the following conditions:
     
    -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.
    +  The above copyright notice and this permission notice shall be included in
    +  all copies or substantial portions of the Software.
     
    -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.
    +  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    +  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
    +  DEALINGS IN THE SOFTWARE.
     
    -END OF TERMS AND CONDITIONS
             
  • - tunnel-agent 0.6.0 - Apache-2.0 + glob 7.1.6 - ISC -

    https://github.com/mikeal/tunnel-agent#readme

    - +

    https://github.com/isaacs/node-glob#readme

    +
    • Copyright (c) Isaac Z. Schlueter and Contributors
    -        Apache License
    +        The ISC License
     
    -Version 2.0, January 2004
    +Copyright (c) Isaac Z. Schlueter and Contributors
     
    -http://www.apache.org/licenses/
    +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.
     
    -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +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.
     
    -1. Definitions.
    +## Glob Logo
     
    -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
    +Glob's logo created by Tanya Brassie <http://tanyabrassie.com/>, licensed
    +under a Creative Commons Attribution-ShareAlike 4.0 International License
    +https://creativecommons.org/licenses/by-sa/4.0/
     
    -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
    +        
    +
    +
  • +
  • +
    + + glob-parent 3.1.0 - ISC + +

    https://github.com/es128/glob-parent

    +
    • Copyright (c) 2015 Elan Shanker
    +
    +        The ISC 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.
    +Copyright (c) 2015 Elan Shanker
     
    -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this 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
    +copyright notice and this permission notice appear in all copies.
     
    -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
    +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.
     
    -"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.
    +        
    +
    +
  • +
  • +
    + + glob-parent 5.1.1 - ISC + +

    https://github.com/gulpjs/glob-parent#readme

    +
    • Copyright (c) 2015, 2019 Elan Shanker
    +
    +        The ISC License
     
    -"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).
    +Copyright (c) 2015, 2019 Elan Shanker
     
    -"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.
    +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.
     
    -"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."
    +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.
     
    -"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.
    +        
    +
    +
  • +
  • +
    + + graceful-fs 4.2.4 - ISC + +

    https://github.com/isaacs/node-graceful-fs#readme

    +
    • Copyright (c) Isaac Z. Schlueter, Ben Noordhuis, and Contributors
    +
    +        The ISC License
     
    -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.
    +Copyright (c) Isaac Z. Schlueter, Ben Noordhuis, and Contributors
     
    -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.
    +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.
     
    -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:
    +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.
     
    -You must give any other recipients of the Work or Derivative Works a copy of this License; and
    +        
    +
    +
  • +
  • +
    + + inflight 1.0.6 - ISC + +

    https://github.com/isaacs/inflight

    +
    • Copyright (c) Isaac Z. Schlueter
    +
    +        The ISC License
     
    -You must cause any modified files to carry prominent notices stating that You changed the files; and
    +Copyright (c) Isaac Z. Schlueter
     
    -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
    +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.
     
    -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.
    +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.
     
    -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.
    +        
    +
    +
  • +
  • +
    + + inherits 2.0.4 - ISC + +

    https://github.com/isaacs/inherits#readme

    +
    • Copyright (c) Isaac Z. Schlueter
    +
    +        The ISC License
     
    -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.
    +Copyright (c) Isaac Z. Schlueter
     
    -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.
    +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.
     
    -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.
    +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.
     
    -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
             
  • - websocket 1.0.32 - Apache-2.0 + minimatch 3.0.4 - ISC -

    https://github.com/theturtle32/WebSocket-Node

    - +

    https://github.com/isaacs/minimatch#readme

    +
    • Copyright (c) Isaac Z. Schlueter and Contributors
    -        
    -                              Apache License
    -                        Version 2.0, January 2004
    -                     http://www.apache.org/licenses/
    -
    -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +        The ISC License
     
    -1. Definitions.
    +Copyright (c) Isaac Z. Schlueter and Contributors
     
    -   "License" shall mean the terms and conditions for use, reproduction,
    -   and distribution as defined by Sections 1 through 9 of this document.
    +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.
     
    -   "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.
    +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.
     
    -   "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).
    +        
    +
    +
  • +
  • +
    + + once 1.4.0 - ISC + +

    https://github.com/isaacs/once#readme

    +
    • Copyright (c) Isaac Z. Schlueter and Contributors
    +
    +        The ISC License
     
    -   "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.
    +Copyright (c) Isaac Z. Schlueter and Contributors
     
    -   "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."
    +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.
     
    -   "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.
    +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.
     
    -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.
    +        
    +
    +
  • +
  • +
    + + sax 1.2.4 - ISC + +

    https://github.com/isaacs/sax-js#readme

    +
    • Copyright (c) Isaac Z. Schlueter and Contributors
    • +
    • Copyright Mathias Bynens <https://mathiasbynens.be/>
    +
    +        The ISC License
     
    -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.
    +Copyright (c) Isaac Z. Schlueter and Contributors
     
    -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:
    +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.
     
    -   (a) You must give any other recipients of the Work or
    -       Derivative Works a copy of this License; and
    +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.
     
    -   (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
    +`String.fromCodePoint` by Mathias Bynens used according to terms of MIT
    +License, as follows:
     
    -   (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.
    +    Copyright Mathias Bynens <https://mathiasbynens.be/>
     
    -   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.
    +    Permission is hereby granted, free of charge, to any person obtaining
    +    a copy of this software and associated documentation files (the
    +    "Software"), to deal in the Software without restriction, including
    +    without limitation the rights to use, copy, modify, merge, publish,
    +    distribute, sublicense, and/or sell copies of the Software, and to
    +    permit persons to whom the Software is furnished to do so, subject to
    +    the following conditions:
     
    -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.
    +    The above copyright notice and this permission notice shall be
    +    included in all copies or substantial portions of the Software.
     
    -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.
    +    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    +    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    +    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    +    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
    +    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
    +    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
    +    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
     
    -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.
    +        
    +
    +
  • +
  • +
    + + semver 5.7.1 - ISC + +

    https://github.com/npm/node-semver#readme

    +
    • Copyright Isaac Z.
    • +
    • Copyright Isaac Z. Schlueter
    • +
    • Copyright (c) Isaac Z. Schlueter and Contributors
    +
    +        The ISC 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.
    +Copyright (c) Isaac Z. Schlueter and Contributors
     
    -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.
    +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.
     
    -END OF TERMS AND CONDITIONS
    +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.
     
             
    @@ -2378,37 +2018,26 @@

    NOTICES AND INFORMATION

  • - async-listener 0.6.10 - BSD-2-Clause + type 2.0.0 - ISC -

    https://github.com/othiym23/async-listener#readme

    -
    • Copyright (c) 2013-2017, Forrest L Norvell
    • -
    • Copyright Joyent, Inc. and other Node contributors.
    +

    https://github.com/medikoo/type#readme

    +
    • Copyright (c) 2019, Mariusz Nowak, medikoo, medikoo.com
    -        BSD 2-Clause License
    +        ISC License
     
    -Copyright (c) 2013-2017, Forrest L Norvell
    -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.
    +Copyright (c) 2019, Mariusz Nowak, @medikoo, medikoo.com
     
    -* 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.
    +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.
     
    -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.
    +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.
     
             
    @@ -2416,33 +2045,26 @@

    NOTICES AND INFORMATION

  • - cls-hooked 4.2.2 - BSD-2-Clause + type 1.2.0 - ISC -

    https://github.com/jeff-lewis/cls-hooked#readme

    -
    • Copyright (c) 2013-2016, Forrest L Norvell <ogd@aoaioxxysz.net>
    +

    https://github.com/medikoo/type#readme

    +
    • Copyright (c) 2019, Mariusz Nowak, medikoo, medikoo.com
    -        Copyright (c) 2013-2016, Forrest L Norvell <ogd@aoaioxxysz.net>
    -All rights reserved.
    +        ISC License
     
    -Redistribution and use in source and binary forms, with or without
    -modification, are permitted provided that the following conditions are met:
    +Copyright (c) 2019, Mariusz Nowak, @medikoo, medikoo.com
     
    -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.
    +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.
     
    -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.
    +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.
     
             
    @@ -2450,33 +2072,18 @@

    NOTICES AND INFORMATION

  • - continuation-local-storage 3.2.1 - BSD-2-Clause + universal-user-agent 6.0.0 - ISC -

    https://github.com/othiym23/node-continuation-local-storage#readme

    -
    • Copyright (c) 2013-2016, Forrest L Norvell <ogd@aoaioxxysz.net>
    +

    https://github.com/gr2m/universal-user-agent#readme

    +
    • Copyright (c) 2018, Gregor Martynus (https://github.com/gr2m)
    -        Copyright (c) 2013-2016, Forrest L Norvell <ogd@aoaioxxysz.net>
    -All rights reserved.
    +        # [ISC License](https://spdx.org/licenses/ISC)
     
    -Redistribution and use in source and binary forms, with or without
    -modification, are permitted provided that the following conditions are met:
    +Copyright (c) 2018, Gregor Martynus (https://github.com/gr2m)
     
    -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.
    +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.
     
    -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.
    +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.
     
             
    @@ -2484,22 +2091,26 @@

    NOTICES AND INFORMATION

  • - domelementtype 1.3.1 - BSD-2-Clause + wrappy 1.0.2 - ISC -

    https://github.com/fb55/domelementtype#readme

    -
    • Copyright (c) Felix Bohm
    +

    https://github.com/npm/wrappy

    +
    • Copyright (c) Isaac Z. Schlueter and Contributors
    -        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:
    +        The ISC License
     
    -Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
    +Copyright (c) Isaac Z. Schlueter and Contributors
     
    -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.
    +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.
     
    -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.
    +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.
     
             
    @@ -2507,22 +2118,24 @@

    NOTICES AND INFORMATION

  • - domhandler 2.4.2 - BSD-2-Clause + yaml 1.10.2 - ISC -

    https://github.com/fb55/DomHandler#readme

    -
    • Copyright (c) Felix Bohm
    +

    https://eemeli.org/yaml/v1/

    +
    • Copyright 2018 Eemeli Aro <eemeli@gmail.com>
    -        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.
    +        Copyright 2018 Eemeli Aro <eemeli@gmail.com>
     
    -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.
    +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.
     
    -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.
    +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.
     
             
    @@ -2530,22 +2143,32 @@

    NOTICES AND INFORMATION

  • - domutils 1.5.1 - BSD-2-Clause + @azure/abort-controller 1.0.4 - MIT -

    https://github.com/FB55/domutils

    -
    • Copyright (c) Felix Bohm
    +

    https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/core/abort-controller/README.md

    +
    • Copyright (c) Microsoft Corporation.
    -        Copyright (c) Felix Böhm
    -All rights reserved.
    +        The MIT License (MIT)
     
    -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
    +Copyright (c) 2020 Microsoft
     
    -Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
     
    -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 above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
     
    -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.
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
             
    @@ -2553,43 +2176,65 @@

    NOTICES AND INFORMATION

  • - emitter-listener 1.1.2 - BSD-2-Clause + @azure/arm-appinsights 3.0.0 - MIT -

    https://github.com/othiym23/emitter-listener

    - +

    https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/applicationinsights/arm-appinsights

    +
    • Copyright (c) Microsoft Corporation.
    -        Copyright (c) <year> <owner> . All rights reserved.
    +        The MIT License (MIT)
     
    -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
    +Copyright (c) 2020 Microsoft
     
    -   1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
     
    -   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.
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION 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 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.
             
  • - entities 1.1.2 - BSD-2-Clause + @azure/arm-appservice 6.1.0 - MIT -

    https://github.com/fb55/entities#readme

    -
    • Copyright (c) Felix Bohm
    • -
    • (c) // http://mathiasbynens.be/notes/javascript-encoding
    +

    https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/appservice/arm-appservice

    +
    • Copyright (c) Microsoft Corporation.
    -        Copyright (c) Felix Böhm
    -All rights reserved.
    +        The MIT License (MIT)
     
    -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
    +Copyright (c) 2020 Microsoft
     
    -Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
     
    -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 above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
     
    -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.
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
             
    @@ -2597,36 +2242,32 @@

    NOTICES AND INFORMATION

  • - shimmer 1.2.1 - BSD-2-Clause + @azure/arm-resources 3.0.0 - MIT -

    https://github.com/othiym23/shimmer#readme

    -
    • Copyright (c) 2013-2019, Forrest L Norvell
    +

    https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/resources/arm-resources

    +
    • Copyright (c) Microsoft Corporation.
    -        BSD 2-Clause License
    +        The MIT License (MIT)
     
    -Copyright (c) 2013-2019, Forrest L Norvell
    -All rights reserved.
    +Copyright (c) 2020 Microsoft
     
    -Redistribution and use in source and binary forms, with or without
    -modification, are permitted provided that the following conditions are met:
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
     
    -* Redistributions of source code must retain the above copyright notice, this
    -  list of conditions and the following disclaimer.
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
     
    -* 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.
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
             
    @@ -2634,102 +2275,65 @@

    NOTICES AND INFORMATION

  • - uri-js 4.2.2 - BSD-2-Clause + @azure/arm-resources 4.0.0 - MIT -

    https://github.com/garycourt/uri-js

    -
    • (c) 2011 Gary Court.
    • -
    • Copyright 2011 Gary Court.
    • -
    • Copyright (c) 2008 Ariel Flesler
    • -
    • Copyright (c) 2009 John Resig, Jorn Zaefferer
    +

    https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/resources/arm-resources

    +
    • Copyright (c) Microsoft Corporation.
    -        Copyright (c) <year> <owner> . All rights reserved.
    +        The MIT License (MIT)
     
    -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
    +Copyright (c) 2020 Microsoft
     
    -   1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
     
    -   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.
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION 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 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.
             
  • - bcrypt-pbkdf 1.0.2 - BSD-3-Clause + @azure/arm-resources-profile-2020-09-01-hybrid 1.0.0 - MIT -

    https://github.com/joyent/node-bcrypt-pbkdf#readme

    -
    • Copyright 2016, Joyent Inc
    • -
    • Copyright (c) 2013 Ted Unangst <tedu@openbsd.org>
    • -
    • Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de>
    +

    https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/resources/arm-resources-profile-2020-09-01-hybrid

    +
    • Copyright (c) Microsoft Corporation.
    -        The Blowfish portions are under the following license:
    -
    -Blowfish block cipher for OpenBSD
    -Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de>
    -All rights reserved.
    -
    -Implementation advice by David Mazieres <dm@lcs.mit.edu>.
    -
    -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. The name of the author may not be used to endorse or promote products
    -   derived from this software without specific prior written permission.
    -
    -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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 bcrypt_pbkdf portions are under the following license:
    -
    -Copyright (c) 2013 Ted Unangst <tedu@openbsd.org>
    -
    -Permission to use, copy, modify, and 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.
    -
    -
    +        The MIT License (MIT)
     
    -Performance improvements (Javascript-specific):
    +Copyright (c) 2020 Microsoft
     
    -Copyright 2016, Joyent Inc
    -Author: Alex Wilson <alex.wilson@joyent.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:
     
    -Permission to use, copy, modify, and 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 above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
     
    -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.
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
             
    @@ -2737,24 +2341,33 @@

    NOTICES AND INFORMATION

  • - buffer-equal-constant-time 1.0.1 - BSD-3-Clause + @azure/arm-storage 15.3.0 - MIT - -
    • (c) 2013 GoInstant Inc., a salesforce.com company
    • -
    • Copyright (c) 2013, GoInstant Inc., a salesforce.com company
    +

    https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/storage/arm-storage

    +
    • Create (c), Update
    • +
    • Copyright (c) Microsoft Corporation.
    -        Copyright (c) 2013, GoInstant Inc., a salesforce.com company
    -All rights reserved.
    -
    -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
    +        The MIT License (MIT)
     
    -* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
    +Copyright (c) 2021 Microsoft
     
    -* 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.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
     
    -* Neither the name of salesforce.com, nor GoInstant, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
     
    -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.
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
             
    @@ -2762,23 +2375,33 @@

    NOTICES AND INFORMATION

  • - ieee754 1.1.13 - BSD-3-Clause + @azure/arm-storage-profile-2020-09-01-hybrid 1.0.0 - MIT -

    https://github.com/feross/ieee754#readme

    -
    • Copyright 2008 Fair Oaks Labs, Inc.
    • -
    • Copyright (c) 2008, Fair Oaks Labs, Inc.
    +

    https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/storage/arm-storage-profile-2020-09-01-hybrid

    +
    • Create (c), Update
    • +
    • Copyright (c) Microsoft Corporation.
    -        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:
    +        The MIT License (MIT)
     
    -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
    +Copyright (c) 2020 Microsoft
     
    -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.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
     
    -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.
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
     
    -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.
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
             
    @@ -2786,39 +2409,32 @@

    NOTICES AND INFORMATION

  • - qs 6.5.2 - BSD-3-Clause + @azure/arm-subscriptions 3.0.0 - MIT -

    https://github.com/ljharb/qs

    -
    • Copyright (c) 2014 Nathan LaFreniere and other contributors.
    +

    https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/subscription/arm-subscriptions

    +
    • Copyright (c) Microsoft Corporation.
    -        Copyright (c) 2014 Nathan LaFreniere and other contributors.
    -All rights reserved.
    +        The MIT License (MIT)
     
    -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.
    +Copyright (c) 2020 Microsoft
     
    -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.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
     
    -                                  *   *   *
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
     
    -The complete list of contributors can be found at: https://github.com/hapijs/qs/graphs/contributors
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
             
    @@ -2826,24 +2442,33 @@

    NOTICES AND INFORMATION

  • - tough-cookie 3.0.1 - BSD-3-Clause + @azure/arm-subscriptions 2.0.0 - MIT -

    https://github.com/salesforce/tough-cookie

    -
    • Copyright (c) 2015, Salesforce.com, Inc.
    • -
    • Copyright (c) 2018, Salesforce.com, Inc.
    +

    https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/subscription/arm-subscriptions

    +
    • Copyright (c) 2019 Microsoft
    • +
    • Copyright (c) Microsoft Corporation.
    -        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:
    +        The MIT License (MIT)
     
    -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
    +Copyright (c) 2019 Microsoft
     
    -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.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
     
    -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.
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
     
    -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.
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
             
    @@ -2851,24 +2476,32 @@

    NOTICES AND INFORMATION

  • - tough-cookie 2.5.0 - BSD-3-Clause + @azure/core-asynciterator-polyfill 1.0.0 - MIT -

    https://github.com/salesforce/tough-cookie

    -
    • Copyright (c) 2015, Salesforce.com, Inc.
    • -
    • Copyright (c) 2018, Salesforce.com, Inc.
    +

    https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/core/core-asynciterator-polyfill

    +
    • Copyright (c) Microsoft Corporation.
    -        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:
    +            MIT License
     
    -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
    +    Copyright (c) Microsoft Corporation. All rights reserved.
     
    -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.
    +    Permission is hereby granted, free of charge, to any person obtaining a copy
    +    of this software and associated documentation files (the "Software"), to deal
    +    in the Software without restriction, including without limitation the rights
    +    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +    copies of the Software, and to permit persons to whom the Software is
    +    furnished to do so, subject to the following conditions:
     
    -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.
    +    The above copyright notice and this permission notice shall be included in all
    +    copies or substantial portions of the Software.
     
    -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.
    +    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +    SOFTWARE
     
             
    @@ -2876,24 +2509,32 @@

    NOTICES AND INFORMATION

  • - tough-cookie 4.0.0 - BSD-3-Clause + @azure/core-auth 1.2.0 - MIT -

    https://github.com/salesforce/tough-cookie

    -
    • Copyright (c) 2015, Salesforce.com, Inc.
    • -
    • Copyright (c) 2018, Salesforce.com, Inc.
    +

    https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/core/core-auth/README.md

    +
    • Copyright (c) Microsoft Corporation.
    -        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:
    +        The MIT License (MIT)
     
    -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
    +Copyright (c) 2020 Microsoft
     
    -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.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
     
    -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.
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
     
    -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.
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
             
    @@ -2901,26 +2542,32 @@

    NOTICES AND INFORMATION

  • - d 1.0.1 - ISC + @azure/core-http 1.2.0 - MIT -

    https://github.com/medikoo/d#readme

    -
    • Copyright (c) 2013-2019, Mariusz Nowak, medikoo, medikoo.com
    +

    https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/core/core-http/README.md

    +
    • Copyright (c) Microsoft Corporation.
    -        ISC License
    +        The MIT License (MIT)
     
    -Copyright (c) 2013-2019, Mariusz Nowak, @medikoo, medikoo.com
    +Copyright (c) 2020 Microsoft
     
    -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.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or 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" 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.
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
             
    @@ -2928,26 +2575,33 @@

    NOTICES AND INFORMATION

  • - deprecation 2.3.1 - ISC + @azure/core-lro 1.0.2 - MIT -

    https://github.com/gr2m/deprecation#readme

    -
    • Copyright (c) Gregor Martynus and contributors
    +

    https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/core/core-lro

    +
    • Copyright (c) Microsoft Corporation.
    • +
    • Copyright (c) Microsoft and contributors.
    -        The ISC License
    +        The MIT License (MIT)
     
    -Copyright (c) Gregor Martynus and contributors
    +Copyright (c) 2020 Microsoft
     
    -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.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or 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" 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.
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
             
    @@ -2955,27 +2609,32 @@

    NOTICES AND INFORMATION

  • - es5-ext 0.10.53 - ISC + @azure/core-paging 1.1.3 - MIT -

    https://github.com/medikoo/es5-ext#readme

    -
    • Copyright (c) 2008 Matsuza
    • -
    • Copyright (c) 2011-2019, Mariusz Nowak, medikoo, medikoo.com
    +

    https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/core/core-paging/README.md

    +
    • Copyright (c) Microsoft Corporation.
    -        ISC License
    +        The MIT License (MIT)
     
    -Copyright (c) 2011-2019, Mariusz Nowak, @medikoo, medikoo.com
    +Copyright (c) 2020 Microsoft
     
    -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.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or 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" 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.
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
             
    @@ -2983,26 +2642,33 @@

    NOTICES AND INFORMATION

  • - es6-symbol 3.1.3 - ISC + @azure/core-tracing 1.0.0-preview.9 - MIT -

    https://github.com/medikoo/es6-symbol#readme

    -
    • Copyright (c) 2013-2019, Mariusz Nowak, medikoo, medikoo.com
    +

    https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/core/core-tracing/README.md

    +
    • Copyright (c) Microsoft Corporation.
    • +
    • Copyright (c) Microsoft Corporation. V1 OpenTelemetry
    -        ISC License
    +        The MIT License (MIT)
     
    -Copyright (c) 2013-2019, Mariusz Nowak, @medikoo, medikoo.com
    +Copyright (c) 2020 Microsoft
     
    -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.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or 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" 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.
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
             
    @@ -3010,26 +2676,32 @@

    NOTICES AND INFORMATION

  • - ext 1.4.0 - ISC + @azure/logger 1.0.0 - MIT - -
    • Copyright (c) 2011-2019, Mariusz Nowak, medikoo, medikoo.com
    +

    https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/core/logger

    +
    • Copyright (c) Microsoft Corporation.
    -        ISC License
    +            MIT License
     
    -Copyright (c) 2011-2019, Mariusz Nowak, @medikoo, medikoo.com
    +    Copyright (c) Microsoft Corporation. All rights reserved.
     
    -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.
    +    Permission is hereby granted, free of charge, to any person obtaining a copy
    +    of this software and associated documentation files (the "Software"), to deal
    +    in the Software without restriction, including without limitation the rights
    +    to use, copy, modify, merge, publish, distribute, sublicense, and/or 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" 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.
    +    The above copyright notice and this permission notice shall be included in all
    +    copies or substantial portions of the Software.
    +
    +    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +    SOFTWARE
     
             
    @@ -3037,55 +2709,32 @@

    NOTICES AND INFORMATION

  • - fs.realpath 1.0.0 - ISC + @azure/ms-rest-azure-env 2.0.0 - MIT -

    https://github.com/isaacs/fs.realpath#readme

    -
    • Copyright (c) Isaac Z. Schlueter and Contributors
    • -
    • Copyright Joyent, Inc. and other Node contributors.
    +

    https://github.com/Azure/ms-rest-azure-env

    +
    • Copyright (c) Microsoft Corporation.
    -        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:
    +            MIT License
     
    -  Copyright Joyent, Inc. and other Node contributors.
    +    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:
    +    Permission is hereby granted, free of charge, to any person obtaining a copy
    +    of this software and associated documentation files (the "Software"), to deal
    +    in the Software without restriction, including without limitation the rights
    +    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +    copies of the Software, and to permit persons to whom the Software is
    +    furnished to do so, subject to the following conditions:
     
    -  The above copyright notice and this permission notice shall be included in
    -  all copies or substantial portions of the Software.
    +    The above copyright notice and this permission notice shall be included in all
    +    copies or substantial portions of the Software.
     
    -  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    -  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    -  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    -  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    -  LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +    SOFTWARE
     
             
    @@ -3093,32 +2742,33 @@

    NOTICES AND INFORMATION

  • - glob 7.1.6 - ISC + @azure/ms-rest-azure-js 2.0.1 - MIT -

    https://github.com/isaacs/node-glob#readme

    -
    • Copyright (c) Isaac Z. Schlueter and Contributors
    +

    https://github.com/Azure/ms-rest-azure-js

    +
    • Copyright (c) 2017
    • +
    • Copyright (c) Microsoft Corporation.
    -        The ISC License
    +        MIT License
     
    -Copyright (c) Isaac Z. Schlueter and Contributors
    +Copyright (c) 2017 MIT
     
    -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.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
     
    -## Glob Logo
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
     
    -Glob's logo created by Tanya Brassie <http://tanyabrassie.com/>, licensed
    -under a Creative Commons Attribution-ShareAlike 4.0 International License
    -https://creativecommons.org/licenses/by-sa/4.0/
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
             
    @@ -3126,26 +2776,34 @@

    NOTICES AND INFORMATION

  • - graceful-fs 4.2.4 - ISC + @azure/ms-rest-js 2.3.0 - MIT -

    https://github.com/isaacs/node-graceful-fs#readme

    -
    • Copyright (c) Isaac Z. Schlueter, Ben Noordhuis, and Contributors
    +

    https://github.com/Azure/ms-rest-js

    +
    • copyright 2015 Toru Nagashima.
    • +
    • Copyright (c) Microsoft Corporation.
    • +
    • Copyright (c) 2010-2016 Robert Kieffer and other contributors
    -        The ISC License
    +            MIT License
     
    -Copyright (c) Isaac Z. Schlueter, Ben Noordhuis, and Contributors
    +    Copyright (c) Microsoft Corporation. All rights reserved.
     
    -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.
    +    Permission is hereby granted, free of charge, to any person obtaining a copy
    +    of this software and associated documentation files (the "Software"), to deal
    +    in the Software without restriction, including without limitation the rights
    +    to use, copy, modify, merge, publish, distribute, sublicense, and/or 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" 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.
    +    The above copyright notice and this permission notice shall be included in all
    +    copies or substantial portions of the Software.
    +
    +    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +    SOFTWARE
     
             
    @@ -3153,25 +2811,32 @@

    NOTICES AND INFORMATION

  • - har-schema 2.0.0 - ISC + @azure/storage-blob 12.3.0 - MIT -

    https://github.com/ahmadnassri/har-schema

    -
    • Copyright (c) 2015, Ahmad Nassri <ahmad@ahmadnassri.com>
    • -
    • copyright ahmadnassri.com (https://www.ahmadnassri.com/)
    +

    https://github.com/Azure/azure-sdk-for-js#readme

    +
    • Copyright (c) Microsoft Corporation.
    -        Copyright (c) 2015, Ahmad Nassri <ahmad@ahmadnassri.com>
    +        The MIT License (MIT)
     
    -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.
    +Copyright (c) 2020 Microsoft
     
    -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.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
             
    @@ -3179,26 +2844,31 @@

    NOTICES AND INFORMATION

  • - inflight 1.0.6 - ISC + @kwsites/file-exists 1.1.1 - MIT -

    https://github.com/isaacs/inflight

    -
    • Copyright (c) Isaac Z. Schlueter
    +

    https://github.com/kwsites/file-exists#readme

    +
    • Copyright (c) 2015 Steve King
    -        The ISC License
    +        The MIT License (MIT)
     
    -Copyright (c) Isaac Z. Schlueter
    +Copyright (c) 2015 Steve King
     
    -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.
    +Permission is hereby granted, free of charge, to any person obtaining a copy of
    +this software and associated documentation files (the "Software"), to deal in
    +the Software without restriction, including without limitation the rights to
    +use, copy, modify, merge, publish, distribute, sublicense, and/or 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" 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.
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
    +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
    +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
    +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
    +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
     
             
    @@ -3206,27 +2876,32 @@

    NOTICES AND INFORMATION

  • - inherits 2.0.4 - ISC + @kwsites/promise-deferred 1.1.1 - MIT -

    https://github.com/isaacs/inherits#readme

    -
    • Copyright (c) Isaac Z. Schlueter
    +

    https://github.com/kwsites/promise-deferred#readme

    +
    • Copyright (c) 2018
    -        The ISC License
    +        MIT License
     
    -Copyright (c) Isaac Z. Schlueter
    +Copyright (c) 2018 kwsites
     
    -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.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or 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" 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.
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
     
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
             
    @@ -3234,26 +2909,32 @@

    NOTICES AND INFORMATION

  • - json-stringify-safe 5.0.1 - ISC + @nodelib/fs.scandir 2.1.4 - MIT -

    https://github.com/isaacs/json-stringify-safe

    -
    • Copyright (c) Isaac Z. Schlueter and Contributors
    + +
    • Copyright (c) Denis Malinochkin
    -        The ISC License
    +        The MIT License (MIT)
     
    -Copyright (c) Isaac Z. Schlueter and Contributors
    +Copyright (c) Denis Malinochkin
     
    -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.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or 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" 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.
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
             
    @@ -3261,26 +2942,32 @@

    NOTICES AND INFORMATION

  • - minimatch 3.0.4 - ISC + @nodelib/fs.stat 2.0.4 - MIT -

    https://github.com/isaacs/minimatch#readme

    -
    • Copyright (c) Isaac Z. Schlueter and Contributors
    + +
    • Copyright (c) Denis Malinochkin
    -        The ISC License
    +        The MIT License (MIT)
     
    -Copyright (c) Isaac Z. Schlueter and Contributors
    +Copyright (c) Denis Malinochkin
     
    -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.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or 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" 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.
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
             
    @@ -3288,26 +2975,32 @@

    NOTICES AND INFORMATION

  • - once 1.4.0 - ISC + @nodelib/fs.walk 1.2.6 - MIT -

    https://github.com/isaacs/once#readme

    -
    • Copyright (c) Isaac Z. Schlueter and Contributors
    + +
    • Copyright (c) Denis Malinochkin
    -        The ISC License
    +        The MIT License (MIT)
     
    -Copyright (c) Isaac Z. Schlueter and Contributors
    +Copyright (c) Denis Malinochkin
     
    -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.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or 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" 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.
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
             
    @@ -3315,53 +3008,32 @@

    NOTICES AND INFORMATION

  • - sax 1.2.4 - ISC + @octokit/auth-token 2.4.2 - MIT -

    https://github.com/isaacs/sax-js#readme

    -
    • Copyright (c) Isaac Z. Schlueter and Contributors
    • -
    • Copyright Mathias Bynens <https://mathiasbynens.be/>
    +

    https://github.com/octokit/auth-token.js#readme

    +
    • Copyright (c) 2019 Octokit
    -        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.
    -
    -====
    -
    -`String.fromCodePoint` by Mathias Bynens used according to terms of MIT
    -License, as follows:
    +        The MIT License
     
    -    Copyright Mathias Bynens <https://mathiasbynens.be/>
    +Copyright (c) 2019 Octokit 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:
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
     
    -    The above copyright notice and this permission notice shall be
    -    included in all copies or substantial portions of the Software.
    +The above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
     
    -    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    -    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    -    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    -    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
    -    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
    -    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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
     
             
    @@ -3369,55 +3041,32 @@

    NOTICES AND INFORMATION

  • - semver 5.7.1 - ISC + @octokit/core 3.1.1 - MIT -

    https://github.com/npm/node-semver#readme

    -
    • Copyright Isaac Z.
    • -
    • Copyright Isaac Z. Schlueter
    • -
    • Copyright (c) Isaac Z. Schlueter and Contributors
    +

    https://github.com/octokit/core.js#readme

    +
    • Copyright (c) 2019 Octokit
    -        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.
    +        The MIT License
     
    -        
    -
    -
  • -
  • -
    - - type 2.0.0 - ISC - -

    https://github.com/medikoo/type#readme

    -
    • Copyright (c) 2019, Mariusz Nowak, medikoo, medikoo.com
    -
    -        ISC License
    +Copyright (c) 2019 Octokit contributors
     
    -Copyright (c) 2019, Mariusz Nowak, @medikoo, medikoo.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:
     
    -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 above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
     
    -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.
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
     
             
    @@ -3425,26 +3074,33 @@

    NOTICES AND INFORMATION

  • - type 1.2.0 - ISC + @octokit/endpoint 6.0.5 - MIT -

    https://github.com/medikoo/type#readme

    -
    • Copyright (c) 2019, Mariusz Nowak, medikoo, medikoo.com
    +

    https://github.com/octokit/endpoint.js#readme

    +
    • Copyright (c) 2018 Octokit
    • +
    • Copyright (c) 2012-2014, Bram Stein
    -        ISC License
    +        The MIT License
     
    -Copyright (c) 2019, Mariusz Nowak, @medikoo, medikoo.com
    +Copyright (c) 2018 Octokit 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.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or 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" 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.
    +The above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
     
             
    @@ -3452,18 +3108,32 @@

    NOTICES AND INFORMATION

  • - universal-user-agent 6.0.0 - ISC + @octokit/graphql 4.5.3 - MIT -

    https://github.com/gr2m/universal-user-agent#readme

    -
    • Copyright (c) 2018, Gregor Martynus (https://github.com/gr2m)
    +

    https://github.com/octokit/graphql.js#readme

    +
    • Copyright (c) 2018 Octokit
    -        # [ISC License](https://spdx.org/licenses/ISC)
    +        The MIT License
     
    -Copyright (c) 2018, Gregor Martynus (https://github.com/gr2m)
    +Copyright (c) 2018 Octokit 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.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or 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" 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.
    +The above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
     
             
    @@ -3471,26 +3141,18 @@

    NOTICES AND INFORMATION

  • - wrappy 1.0.2 - ISC + @octokit/plugin-paginate-rest 2.3.0 - MIT -

    https://github.com/npm/wrappy

    -
    • Copyright (c) Isaac Z. Schlueter and Contributors
    +

    https://github.com/octokit/plugin-paginate-rest.js#readme

    +
    -        The ISC License
    +        MIT License Copyright (c) 2019 Octokit contributors
     
    -Copyright (c) Isaac Z. Schlueter 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:
     
    -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 above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.
     
    -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.
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
     
             
    @@ -3498,15 +3160,18 @@

    NOTICES AND INFORMATION

  • - xmldom 0.3.0 - LGPL-2.0 OR MIT OR (LGPL-2.0 AND MIT) + @octokit/plugin-request-log 1.0.0 - MIT -

    https://github.com/xmldom/xmldom

    +

    https://github.com/octokit/plugin-request-log.js#readme

    -        You can choose any one of these licenses:
    +        MIT License Copyright (c) 2020 Octokit 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:
     
    -- MIT: https://opensource.org/licenses/MIT
    -- LGPL: http://www.gnu.org/licenses/lgpl.html
    +The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
     
             
    @@ -3514,32 +3179,18 @@

    NOTICES AND INFORMATION

  • - @azure/abort-controller 1.0.1 - MIT + @octokit/plugin-rest-endpoint-methods 4.1.2 - MIT -

    https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/core/abort-controller

    -
    • Copyright (c) Microsoft Corporation.
    +

    https://github.com/octokit/plugin-rest-endpoint-methods.js#readme

    +
    • Copyright (c) 2019 Octokit
    -            MIT License
    -
    -    Copyright (c) Microsoft Corporation. All rights reserved.
    +        MIT License Copyright (c) 2019 Octokit 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:
    +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
     
    -    The above copyright notice and this permission notice shall be included in all
    -    copies or substantial portions of the Software.
    +The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.
     
    -    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    -    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    -    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    -    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    -    LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
     
             
    @@ -3547,15 +3198,14 @@

    NOTICES AND INFORMATION

  • - @azure/arm-appinsights 2.1.0 - MIT + @octokit/request 5.4.7 - MIT -

    https://github.com/azure/azure-sdk-for-js/tree/master/packages/@azure/arm-appinsights

    -
    • Copyright (c) 2018 Microsoft
    • -
    • Copyright (c) Microsoft Corporation.
    +

    https://github.com/octokit/request.js#readme

    +
    • Copyright (c) 2018 Octokit
    -        The MIT License (MIT)
    +        The MIT License
     
    -Copyright (c) 2018 Microsoft
    +Copyright (c) 2018 Octokit 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
    @@ -3564,16 +3214,16 @@ 

    NOTICES AND INFORMATION

    copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
    @@ -3581,14 +3231,14 @@

    NOTICES AND INFORMATION

  • - @azure/arm-appservice 6.1.0 - MIT + @octokit/request-error 2.0.2 - MIT -

    https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/appservice/arm-appservice

    -
    • Copyright (c) Microsoft Corporation.
    +

    https://github.com/octokit/request-error.js#readme

    +
    • Copyright (c) 2019 Octokit
    -        The MIT License (MIT)
    +        The MIT License
     
    -Copyright (c) 2020 Microsoft
    +Copyright (c) 2019 Octokit 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
    @@ -3597,16 +3247,16 @@ 

    NOTICES AND INFORMATION

    copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
    @@ -3614,14 +3264,16 @@

    NOTICES AND INFORMATION

  • - @azure/arm-resources 3.0.0 - MIT + @octokit/rest 18.0.3 - MIT -

    https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/resources/arm-resources

    -
    • Copyright (c) Microsoft Corporation.
    +

    https://github.com/octokit/rest.js#readme

    +
    • Copyright (c) 2017-2018 Octokit
    • +
    • Copyright (c) 2012 Cloud9 IDE, Inc.
    -        The MIT License (MIT)
    +        The MIT License
     
    -Copyright (c) 2020 Microsoft
    +Copyright (c) 2012 Cloud9 IDE, Inc. (Mike de Boer)
    +Copyright (c) 2017-2018 Octokit 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
    @@ -3630,16 +3282,16 @@ 

    NOTICES AND INFORMATION

    copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
    @@ -3647,33 +3299,18 @@

    NOTICES AND INFORMATION

  • - @azure/arm-storage 15.1.0 - MIT + @octokit/types 5.2.0 - MIT -

    https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/storage/arm-storage

    -
    • Create (c), Update
    • -
    • Copyright (c) Microsoft Corporation.
    +

    https://github.com/octokit/types.ts#readme

    +
    • Copyright (c) 2019 Octokit
    -        The MIT License (MIT)
    -
    -Copyright (c) 2020 Microsoft
    +        MIT License Copyright (c) 2019 Octokit 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:
    +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
     
    -The above copyright notice and this permission notice shall be included in all
    -copies or substantial portions of the Software.
    +The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.
     
    -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    -LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
     
             
    @@ -3681,132 +3318,91 @@

    NOTICES AND INFORMATION

  • - @azure/arm-subscriptions 2.0.0 - MIT + @types/node 12.12.53 - MIT -

    https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/subscription/arm-subscriptions

    -
    • Copyright (c) 2019 Microsoft
    • -
    • Copyright (c) Microsoft Corporation.
    + +
    • Copyright (c) Microsoft Corporation.
    -        The MIT License (MIT)
    -
    -Copyright (c) 2019 Microsoft
    +        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:
    +Copyright (c) <year> <copyright holders>
     
    -The above copyright notice and this permission notice shall be included in all
    -copies or substantial portions of the Software.
    +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 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.
    +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
     
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
             
  • - @azure/core-asynciterator-polyfill 1.0.0 - MIT + @types/node-fetch 2.5.7 - MIT -

    https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/core/core-asynciterator-polyfill

    +
    • Copyright (c) Microsoft Corporation.
    -            MIT License
    -
    -    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:
    +Copyright (c) <year> <copyright holders>
     
    -    The above copyright notice and this permission notice shall be included in all
    -    copies or substantial portions of the Software.
    +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 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
    +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
     
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
             
  • - @azure/core-auth 1.1.3 - MIT + @types/tunnel 0.0.1 - MIT -

    https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/core/core-auth/README.md

    +
    • Copyright (c) Microsoft Corporation.
    -        The MIT License (MIT)
    -
    -Copyright (c) 2020 Microsoft
    +        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:
    +Copyright (c) <year> <copyright holders>
     
    -The above copyright notice and this permission notice shall be included in all
    -copies or substantial portions of the Software.
    +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 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.
    +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
     
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
             
  • - @azure/core-http 1.1.9 - MIT + 1to2 1.0.0 - MIT -

    https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/core/core-http/README.md

    -
    • Copyright (c) Microsoft Corporation.
    + +
    • Copyright (c) 2014 3VOT
             The MIT License (MIT)
     
    -Copyright (c) 2020 Microsoft
    +Copyright (c) 2014 3VOT
     
    -Permission is hereby granted, free of charge, to any person obtaining a copy
    -of this software and associated documentation files (the "Software"), to deal
    -in the Software without restriction, including without limitation the rights
    -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    -copies of the Software, and to permit persons to whom the Software is
    -furnished to do so, subject to the following conditions:
    +Permission is hereby granted, free of charge, to any person obtaining a copy of
    +this software and associated documentation files (the "Software"), to deal in
    +the Software without restriction, including without limitation the rights to
    +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
    +the Software, and to permit persons to whom the Software is furnished to do so,
    +subject to the following conditions:
     
     The above copyright notice and this permission notice shall be included in all
     copies or substantial portions of the Software.
     
     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    -SOFTWARE.
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
    +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
    +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
    +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
    +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
     
             
    @@ -3814,15 +3410,15 @@

    NOTICES AND INFORMATION

  • - @azure/core-lro 1.0.2 - MIT + abort-controller 3.0.0 - MIT -

    https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/core/core-lro

    -
    • Copyright (c) Microsoft Corporation.
    • -
    • Copyright (c) Microsoft and contributors.
    +

    https://github.com/mysticatea/abort-controller#readme

    +
    • copyright 2015 Toru Nagashima.
    • +
    • Copyright (c) 2017 Toru Nagashima
    -        The MIT License (MIT)
    +        MIT License
     
    -Copyright (c) 2020 Microsoft
    +Copyright (c) 2017 Toru Nagashima
     
     Permission is hereby granted, free of charge, to any person obtaining a copy
     of this software and associated documentation files (the "Software"), to deal
    @@ -3848,32 +3444,19 @@ 

    NOTICES AND INFORMATION

  • - @azure/core-paging 1.1.3 - MIT + applicationinsights 1.7.4 - MIT -

    https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/core/core-paging/README.md

    +

    https://github.com/Microsoft/ApplicationInsights-node.js#readme

    • Copyright (c) Microsoft Corporation.
    -        The MIT License (MIT)
    -
    -Copyright (c) 2020 Microsoft
    +        The MIT License (MIT) 
    +Copyright © 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:
    +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
     
    -The above copyright notice and this permission notice shall be included in all
    -copies or substantial portions of the Software.
    +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
     
    -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    -LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
     
             
    @@ -3881,14 +3464,15 @@

    NOTICES AND INFORMATION

  • - @azure/core-tracing 1.0.0-preview.8 - MIT + array-union 1.0.2 - MIT -

    https://github.com/azure/azure-sdk-for-js/tree/master/sdk/core/core-tracing

    -
    • Copyright (c) Microsoft Corporation.
    +

    https://github.com/sindresorhus/array-union#readme

    +
    • (c) Sindre Sorhus (https://sindresorhus.com)
    • +
    • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
             The MIT License (MIT)
     
    -Copyright (c) 2020 Microsoft
    +Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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
    @@ -3897,16 +3481,16 @@ 

    NOTICES AND INFORMATION

    copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
    @@ -3914,99 +3498,21 @@

    NOTICES AND INFORMATION

  • - @azure/core-tracing 1.0.0-preview.9 - MIT + array-union 2.1.0 - MIT -

    https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/core/core-tracing/README.md

    -
    • Copyright (c) Microsoft Corporation.
    • -
    • Copyright (c) Microsoft Corporation. V1 OpenTelemetry
    +

    https://github.com/sindresorhus/array-union#readme

    +
    • (c) Sindre Sorhus (https://sindresorhus.com)
    • +
    • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
    -        The MIT License (MIT)
    +        MIT License
     
    -Copyright (c) 2020 Microsoft
    +Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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:
    +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
     
    -The above copyright notice and this permission notice shall be included in all
    -copies or substantial portions of the Software.
    +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
     
    -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    -SOFTWARE.
    -
    -        
    -
    -
  • -
  • -
    - - @azure/logger 1.0.0 - MIT - -

    https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/core/logger

    -
    • Copyright (c) Microsoft Corporation.
    -
    -            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
    -
    -        
    -
    -
  • -
  • -
    - - @azure/ms-rest-azure-env 2.0.0 - MIT - -

    https://github.com/Azure/ms-rest-azure-env

    -
    • Copyright (c) Microsoft Corporation.
    -
    -            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
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
     
             
    @@ -4014,15 +3520,15 @@

    NOTICES AND INFORMATION

  • - @azure/ms-rest-azure-js 2.0.1 - MIT + array-uniq 1.0.3 - MIT -

    https://github.com/Azure/ms-rest-azure-js

    -
    • Copyright (c) 2017
    • -
    • Copyright (c) Microsoft Corporation.
    +

    https://github.com/sindresorhus/array-uniq#readme

    +
    • (c) Sindre Sorhus (https://sindresorhus.com)
    • +
    • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
    -        MIT License
    +        The MIT License (MIT)
     
    -Copyright (c) 2017 MIT
    +Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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
    @@ -4031,16 +3537,16 @@ 

    NOTICES AND INFORMATION

    copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
    @@ -4048,15 +3554,16 @@

    NOTICES AND INFORMATION

  • - @azure/ms-rest-azure-js 1.3.8 - MIT + array-unique 0.3.2 - MIT -

    https://github.com/Azure/ms-rest-azure-js

    -
    • Copyright (c) 2017
    • -
    • Copyright (c) Microsoft Corporation.
    +

    https://github.com/jonschlinkert/array-unique

    +
    • Copyright (c) 2014-2016, Jon Schlinkert
    • +
    • Copyright (c) 2014-2015, Jon Schlinkert.
    • +
    • Copyright (c) 2016, Jon Schlinkert (https://github.com/jonschlinkert).
    -        MIT License
    +        The MIT License (MIT)
     
    -Copyright (c) 2017 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
    @@ -4065,85 +3572,16 @@ 

    NOTICES AND INFORMATION

    copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -
    -
    -
  • -
  • -
    - - @azure/ms-rest-js 1.8.15 - MIT - -

    https://github.com/Azure/ms-rest-js

    -
    • Copyright (c) Microsoft Corporation.
    • -
    • Copyright (c) 2010-2016 Robert Kieffer and other contributors
    -
    -            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
    -
    -        
    -
    -
  • -
  • -
    - - @azure/ms-rest-js 2.0.8 - MIT - -

    https://github.com/Azure/ms-rest-js

    -
    • copyright 2015 Toru Nagashima.
    • -
    • Copyright (c) Microsoft Corporation.
    • -
    • Copyright (c) 2010-2016 Robert Kieffer and other contributors
    -
    -            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
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
     
             
    @@ -4151,32 +3589,33 @@

    NOTICES AND INFORMATION

  • - @azure/ms-rest-nodeauth 3.0.6 - MIT + arr-diff 4.0.0 - MIT -

    https://github.com/Azure/ms-rest-nodeauth

    -
    • Copyright (c) Microsoft Corporation.
    +

    https://github.com/jonschlinkert/arr-diff

    +
    • Copyright (c) 2014-2017, Jon Schlinkert.
    • +
    • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
    -            MIT License
    +        The MIT License (MIT)
     
    -    Copyright (c) Microsoft Corporation. All rights reserved.
    +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:
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
     
    -    The above copyright notice and this permission notice shall be included in all
    -    copies or substantial portions of the Software.
    +The above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
     
    -    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    -    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    -    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    -    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    -    LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
     
             
    @@ -4184,14 +3623,15 @@

    NOTICES AND INFORMATION

  • - @azure/storage-blob 12.2.1 - MIT + arr-flatten 1.1.0 - MIT -

    https://github.com/Azure/azure-sdk-for-js#readme

    -
    • Copyright (c) Microsoft Corporation.
    +

    https://github.com/jonschlinkert/arr-flatten

    +
    • Copyright (c) 2014-2017, Jon Schlinkert.
    • +
    • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
             The MIT License (MIT)
     
    -Copyright (c) 2020 Microsoft
    +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
    @@ -4200,16 +3640,16 @@ 

    NOTICES AND INFORMATION

    copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
    @@ -4217,14 +3657,15 @@

    NOTICES AND INFORMATION

  • - @octokit/auth-token 2.4.2 - MIT + arr-union 3.1.0 - MIT -

    https://github.com/octokit/auth-token.js#readme

    -
    • Copyright (c) 2019 Octokit
    +

    https://github.com/jonschlinkert/arr-union

    +
    • Copyright (c) 2014-2016, Jon Schlinkert.
    • +
    • Copyright (c) 2016 Jon Schlinkert (https://github.com/jonschlinkert)
    -        The MIT License
    +        The MIT License (MIT)
     
    -Copyright (c) 2019 Octokit contributors
    +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
    @@ -4250,14 +3691,15 @@ 

    NOTICES AND INFORMATION

  • - @octokit/core 3.1.1 - MIT + assign-symbols 1.0.0 - MIT -

    https://github.com/octokit/core.js#readme

    -
    • Copyright (c) 2019 Octokit
    +

    https://github.com/jonschlinkert/assign-symbols

    +
    • Copyright (c) 2015 Jon Schlinkert
    • +
    • Copyright (c) 2015, Jon Schlinkert.
    -        The MIT License
    +        The MIT License (MIT)
     
    -Copyright (c) 2019 Octokit contributors
    +Copyright (c) 2015, 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
    @@ -4283,15 +3725,12 @@ 

    NOTICES AND INFORMATION

  • - @octokit/endpoint 6.0.5 - MIT + async 3.2.0 - MIT -

    https://github.com/octokit/endpoint.js#readme

    -
    • Copyright (c) 2018 Octokit
    • -
    • Copyright (c) 2012-2014, Bram Stein
    +

    https://caolan.github.io/async/

    +
    • Copyright (c) 2010-2018 Caolan McMahon
    -        The MIT License
    -
    -Copyright (c) 2018 Octokit contributors
    +        Copyright (c) 2010-2018 Caolan McMahon
     
     Permission is hereby granted, free of charge, to any person obtaining a copy
     of this software and associated documentation files (the "Software"), to deal
    @@ -4317,14 +3756,12 @@ 

    NOTICES AND INFORMATION

  • - @octokit/graphql 4.5.3 - MIT + async 2.6.3 - MIT -

    https://github.com/octokit/graphql.js#readme

    -
    • Copyright (c) 2018 Octokit
    +

    https://caolan.github.io/async/

    +
    • Copyright (c) 2010-2018 Caolan McMahon
    -        The MIT License
    -
    -Copyright (c) 2018 Octokit contributors
    +        Copyright (c) 2010-2018 Caolan McMahon
     
     Permission is hereby granted, free of charge, to any person obtaining a copy
     of this software and associated documentation files (the "Software"), to deal
    @@ -4350,18 +3787,30 @@ 

    NOTICES AND INFORMATION

  • - @octokit/plugin-paginate-rest 2.3.0 - MIT + async-hook-jl 1.7.6 - MIT -

    https://github.com/octokit/plugin-paginate-rest.js#readme

    - +

    https://github.com/jeff-lewis/async-hook-jl#readme

    +
    • Copyright (c) 2015 Andreas Madsen
    -        MIT License Copyright (c) 2019 Octokit contributors
    +        Copyright (c) 2015 Andreas Madsen
     
    -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
     
    -The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.
    +The above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
     
    -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
     
             
    @@ -4369,18 +3818,32 @@

    NOTICES AND INFORMATION

  • - @octokit/plugin-request-log 1.0.0 - MIT + asynckit 0.4.0 - MIT -

    https://github.com/octokit/plugin-request-log.js#readme

    - +

    https://github.com/alexindigo/asynckit#readme

    +
    • Copyright (c) 2016 Alex Indigo
    -        MIT License Copyright (c) 2020 Octokit contributors
    +        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:
    +Copyright (c) 2016 Alex Indigo
     
    -The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or 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.
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
             
    @@ -4388,18 +3851,30 @@

    NOTICES AND INFORMATION

  • - @octokit/plugin-rest-endpoint-methods 4.1.2 - MIT + axios 0.21.1 - MIT -

    https://github.com/octokit/plugin-rest-endpoint-methods.js#readme

    -
    • Copyright (c) 2019 Octokit
    +

    https://github.com/axios/axios

    +
    • Copyright (c) 2014-present Matt Zabriskie
    -        MIT License Copyright (c) 2019 Octokit contributors
    +        Copyright (c) 2014-present Matt Zabriskie
     
    -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
     
    -The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.
    +The above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
     
    -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
     
             
    @@ -4407,14 +3882,48 @@

    NOTICES AND INFORMATION

  • - @octokit/request 5.4.7 - MIT + balanced-match 1.0.0 - MIT -

    https://github.com/octokit/request.js#readme

    -
    • Copyright (c) 2018 Octokit
    +

    https://github.com/juliangruber/balanced-match

    +
    • Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
    -        The MIT License
    +        (MIT)
     
    -Copyright (c) 2018 Octokit contributors
    +Copyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt;
    +
    +Permission is hereby granted, free of charge, to any person obtaining a copy of
    +this software and associated documentation files (the "Software"), to deal in
    +the Software without restriction, including without limitation the rights to
    +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
    +of the Software, and to permit persons to whom the Software is furnished to do
    +so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
    +
    +        
    +
    +
  • +
  • +
    + + base 0.11.2 - MIT + +

    https://github.com/node-base/base

    +
    • Copyright (c) 2015-2017, Jon Schlinkert.
    • +
    • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
    +
    +        The MIT License (MIT)
    +
    +Copyright (c) 2015-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
    @@ -4440,14 +3949,14 @@ 

    NOTICES AND INFORMATION

  • - @octokit/request-error 2.0.2 - MIT + brace-expansion 1.1.11 - MIT -

    https://github.com/octokit/request-error.js#readme

    -
    • Copyright (c) 2019 Octokit
    +

    https://github.com/juliangruber/brace-expansion

    +
    • Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
    -        The MIT License
    +        MIT License
     
    -Copyright (c) 2019 Octokit contributors
    +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
    @@ -4456,16 +3965,16 @@ 

    NOTICES AND INFORMATION

    copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE.
    @@ -4473,16 +3982,15 @@

    NOTICES AND INFORMATION

  • - @octokit/rest 18.0.3 - MIT + braces 3.0.2 - MIT -

    https://github.com/octokit/rest.js#readme

    -
    • Copyright (c) 2017-2018 Octokit
    • -
    • Copyright (c) 2012 Cloud9 IDE, Inc.
    +

    https://github.com/micromatch/braces

    +
    • Copyright (c) 2014-2018, Jon Schlinkert.
    • +
    • Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert).
    -        The MIT License
    +        The MIT License (MIT)
     
    -Copyright (c) 2012 Cloud9 IDE, Inc. (Mike de Boer)
    -Copyright (c) 2017-2018 Octokit contributors
    +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
    @@ -4508,18 +4016,33 @@ 

    NOTICES AND INFORMATION

  • - @octokit/types 5.2.0 - MIT + braces 2.3.2 - MIT -

    https://github.com/octokit/types.ts#readme

    -
    • Copyright (c) 2019 Octokit
    +

    https://github.com/micromatch/braces

    +
    • Copyright (c) 2014-2018, Jon Schlinkert.
    • +
    • Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert).
    -        MIT License Copyright (c) 2019 Octokit contributors
    +        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:
    +Copyright (c) 2014-2018, Jon Schlinkert.
     
    -The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or 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.
    +The above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
     
             
    @@ -4527,147 +4050,112 @@

    NOTICES AND INFORMATION

  • - @types/node 8.10.64 - MIT + buffer-crc32 0.2.13 - MIT - -
    • Copyright (c) Microsoft Corporation.
    +

    https://github.com/brianloveswords/buffer-crc32

    +
    • Copyright (c) 2013 Brian J. Brennan
    -        MIT License
    +        The MIT License
     
    -Copyright (c) <year> <copyright holders>
    +Copyright (c) 2013 Brian J. Brennan
     
    -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
    +Permission is hereby granted, free of charge, to any person obtaining a copy 
    +of this software and associated documentation files (the "Software"), to deal in 
    +the Software without restriction, including without limitation the rights to use, 
    +copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the 
    +Software, and to permit persons to whom the Software is furnished to do so, 
    +subject to the following conditions:
     
    -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
    +The above copyright notice and this permission notice shall be included in all 
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 
    +INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR 
    +PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
    +FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
             
  • - @types/node 12.12.53 - MIT + bufferutil 4.0.2 - MIT - -
    • Copyright (c) Microsoft Corporation.
    +

    https://github.com/websockets/bufferutil

    +
    • Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com> (http://2x.io)
    -        MIT License
    +        The MIT License (MIT)
     
    -Copyright (c) <year> <copyright holders>
    +Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com> (http://2x.io)
     
    -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
     
    -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
             
  • - @types/node-fetch 2.5.7 - MIT + cache-base 1.0.1 - MIT - -
    • Copyright (c) Microsoft Corporation.
    +

    https://github.com/jonschlinkert/cache-base

    +
    • Copyright (c) 2014-2017, Jon Schlinkert.
    • +
    • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
    -        MIT License
    +        The MIT License (MIT)
     
    -Copyright (c) <year> <copyright holders>
    +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:
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
     
    -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
    +The above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
     
    -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
             
  • - @types/tunnel 0.0.0 - MIT + class-utils 0.3.6 - MIT - -
    • Copyright (c) Microsoft Corporation.
    -
    -        MIT License
    -
    -Copyright (c) <year> <copyright holders>
    -
    -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
    -
    -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
    -
    -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
    -        
    -
    -
  • -
  • -
    - - @types/tunnel 0.0.1 - MIT - - -
    • Copyright (c) Microsoft Corporation.
    -
    -        MIT License
    -
    -Copyright (c) <year> <copyright holders>
    -
    -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
    -
    -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
    -
    -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
    -        
    -
    -
  • -
  • -
    - - 1to2 1.0.0 - MIT - - -
    • Copyright (c) 2014 3VOT
    +

    https://github.com/jonschlinkert/class-utils

    +
    • Copyright (c) 2015, 2017-2018, Jon Schlinkert.
    • +
    • Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert).
             The MIT License (MIT)
     
    -Copyright (c) 2014 3VOT
    -
    -Permission is hereby granted, free of charge, to any person obtaining a copy of
    -this software and associated documentation files (the "Software"), to deal in
    -the Software without restriction, including without limitation the rights to
    -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
    -the Software, and to permit persons to whom the Software is furnished to do so,
    -subject to the following conditions:
    -
    -The above copyright notice and this permission notice shall be included in all
    -copies or substantial portions of the Software.
    -
    -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
    -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
    -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
    -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
    -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
    -
    -        
    -
    -
  • -
  • -
    - - abort-controller 3.0.0 - MIT - -

    https://github.com/mysticatea/abort-controller#readme

    -
    • copyright 2015 Toru Nagashima.
    • -
    • Copyright (c) 2017 Toru Nagashima
    -
    -        MIT License
    -
    -Copyright (c) 2017 Toru Nagashima
    +Copyright (c) 2015, 2017-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
    @@ -4676,16 +4164,16 @@ 

    NOTICES AND INFORMATION

    copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
    @@ -4693,16 +4181,15 @@

    NOTICES AND INFORMATION

  • - ajv 6.12.2 - MIT + collection-visit 1.0.0 - MIT -

    https://github.com/epoberezkin/ajv

    -
    • (c) 2011 Gary Court.
    • -
    • Copyright 2011 Gary Court.
    • -
    • Copyright (c) 2015-2017 Evgeny Poberezkin
    +

    https://github.com/jonschlinkert/collection-visit

    +
    • Copyright (c) 2015, 2017, Jon Schlinkert.
    • +
    • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
             The MIT License (MIT)
     
    -Copyright (c) 2015-2017 Evgeny Poberezkin
    +Copyright (c) 2015, 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
    @@ -4711,17 +4198,16 @@ 

    NOTICES AND INFORMATION

    copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
    @@ -4729,16 +4215,12 @@

    NOTICES AND INFORMATION

  • - ajv 6.12.5 - MIT + combined-stream 1.0.8 - MIT -

    https://github.com/ajv-validator/ajv

    -
    • (c) 2011 Gary Court.
    • -
    • Copyright 2011 Gary Court.
    • -
    • Copyright (c) 2015-2017 Evgeny Poberezkin
    +

    https://github.com/felixge/node-combined-stream

    +
    • Copyright (c) 2011 Debuggable Limited <felix@debuggable.com>
    -        The MIT License (MIT)
    -
    -Copyright (c) 2015-2017 Evgeny Poberezkin
    +        Copyright (c) 2011 Debuggable Limited <felix@debuggable.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
    @@ -4747,17 +4229,16 @@ 

    NOTICES AND INFORMATION

    copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
    @@ -4765,33 +4246,14 @@

    NOTICES AND INFORMATION

  • - applicationinsights 1.7.4 - MIT + component-emitter 1.3.0 - MIT -

    https://github.com/Microsoft/ApplicationInsights-node.js#readme

    -
    • Copyright (c) Microsoft Corporation.
    +

    https://github.com/component/emitter#readme

    +
    • Copyright (c) 2014 Component
    -        The MIT License (MIT) 
    -Copyright © 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.
    +        (The MIT License)
     
    -        
    -
    -
  • -
  • -
    - - archiver 4.0.2 - MIT - -

    https://github.com/archiverjs/node-archiver

    -
    • Copyright (c) 2012-2014 Chris Talkington, contributors.
    • -
    • copyright (c) 2012-2014 Chris Talkington, contributors.
    -
    -        Copyright (c) 2012-2014 Chris Talkington, contributors.
    +Copyright (c) 2014 Component contributors <dev@component.io>
     
     Permission is hereby granted, free of charge, to any person
     obtaining a copy of this software and associated documentation
    @@ -4813,87 +4275,52 @@ 

    NOTICES AND INFORMATION

    WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -
    -
    -
  • -
  • -
    - - archiver 3.1.1 - MIT - -

    https://github.com/archiverjs/node-archiver

    -
    • Copyright (c) 2012-2014 Chris Talkington, contributors.
    • -
    • copyright (c) 2012-2014 Chris Talkington, contributors.
    -
    -        Copyright (c) 2012-2014 Chris Talkington, 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.
             
  • - archiver-utils 2.1.0 - MIT + concat-map 0.0.1 - MIT -

    https://github.com/archiverjs/archiver-utils#readme

    -
    • Copyright (c) 2015 Chris Talkington.
    • -
    • Copyright (c) 2012-2014 Chris Talkington, contributors.
    +

    https://github.com/substack/node-concat-map

    +
    -        Copyright (c) 2015 Chris Talkington.
    +        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:
    +Permission is hereby granted, free of charge, to any person obtaining a copy of
    +this software and associated documentation files (the "Software"), to deal in
    +the Software without restriction, including without limitation the rights to
    +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
    +the Software, and to permit persons to whom the Software is furnished to do so,
    +subject to the following conditions:
     
    -The above copyright notice and this permission notice shall be
    -included in all copies or substantial portions of the Software.
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
    +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
    +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
    +IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
    -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
    -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    -OTHER DEALINGS IN THE SOFTWARE.
             
  • - asn1 0.2.4 - MIT + copy-descriptor 0.1.1 - MIT -

    https://github.com/joyent/node-asn1#readme

    -
    • Copyright (c) 2011 Mark Cavage
    • -
    • Copyright 2011 Mark Cavage <mcavage@gmail.com>
    +

    https://github.com/jonschlinkert/copy-descriptor

    +
    • Copyright (c) 2015, Jon Schlinkert.
    • +
    • Copyright (c) 2015-2016, Jon Schlinkert
    -        Copyright (c) 2011 Mark Cavage, All rights reserved.
    +        The MIT License (MIT)
    +
    +Copyright (c) 2015-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
    @@ -4911,7 +4338,7 @@ 

    NOTICES AND INFORMATION

    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE.
    @@ -4919,34 +4346,14 @@

    NOTICES AND INFORMATION

  • - assert-plus 1.0.0 - MIT + dayjs 1.10.4 - MIT -

    https://github.com/mcavage/node-assert-plus#readme

    -
    • Copyright 2015 Joyent, Inc.
    • -
    • Copyright (c) 2012 Mark Cavage
    • -
    • Copyright (c) 2012, Mark Cavage.
    +

    https://day.js.org/

    +
    • Copyright (c) 2018-present
             MIT License
     
    -Copyright (c) <year> <copyright holders>
    -
    -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
    -
    -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
    -
    -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
    -        
    -
    -
  • -
  • -
    - - async 3.2.0 - MIT - -

    https://caolan.github.io/async/

    -
    • Copyright (c) 2010-2018 Caolan McMahon
    -
    -        Copyright (c) 2010-2018 Caolan McMahon
    +Copyright (c) 2018-present, iamkun
     
     Permission is hereby granted, free of charge, to any person obtaining a copy
     of this software and associated documentation files (the "Software"), to deal
    @@ -4955,16 +4362,16 @@ 

    NOTICES AND INFORMATION

    copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE.
    @@ -4972,61 +4379,31 @@

    NOTICES AND INFORMATION

  • - async 2.6.3 - MIT + debug 2.6.9 - MIT -

    https://caolan.github.io/async/

    -
    • Copyright (c) 2010-2018 Caolan McMahon
    +

    https://github.com/visionmedia/debug#readme

    +
    • Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca>
    • +
    • Copyright (c) 2014-2016 TJ Holowaychuk <tj@vision-media.ca>
    -        Copyright (c) 2010-2018 Caolan McMahon
    +        (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:
    +Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca>
     
    -The above copyright notice and this permission notice shall be included in
    -all copies or substantial portions of the Software.
    +Permission is hereby granted, free of charge, to any person obtaining a copy of this software 
    +and associated documentation files (the 'Software'), to deal in the Software without restriction, 
    +including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, 
    +and/or 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.
    +The above copyright notice and this permission notice shall be included in all copies or substantial 
    +portions of the Software.
     
    -        
    -
    -
  • -
  • -
    - - async-hook-jl 1.7.6 - MIT - -

    https://github.com/jeff-lewis/async-hook-jl#readme

    -
    • Copyright (c) 2015 Andreas Madsen
    -
    -        Copyright (c) 2015 Andreas Madsen
    -
    -Permission is hereby granted, free of charge, to any person obtaining a copy
    -of this software and associated documentation files (the "Software"), to deal
    -in the Software without restriction, including without limitation the rights
    -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    -copies of the Software, and to permit persons to whom the Software is
    -furnished to do so, subject to the following conditions:
    -
    -The above copyright notice and this permission notice shall be included in
    -all copies or substantial portions of the Software.
    +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT 
    +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
    +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
    +WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    -THE SOFTWARE.
     
             
    @@ -5034,63 +4411,31 @@

    NOTICES AND INFORMATION

  • - asynckit 0.4.0 - MIT + debug 3.2.7 - MIT -

    https://github.com/alexindigo/asynckit#readme

    -
    • Copyright (c) 2016 Alex Indigo
    +

    https://github.com/visionmedia/debug#readme

    +
    • Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca>
    • +
    • Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
    -        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 MIT License)
     
    -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    -LIABILITY, WHETHER IN AN ACTION 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 (c) 2014 TJ Holowaychuk <tj@vision-media.ca>
     
    -        
    -
    -
  • -
  • -
    - - aws4 1.10.1 - MIT - -

    https://github.com/mhart/aws4#readme

    -
    • Copyright 2013 Michael Hart (michael.hart.au@gmail.com)
    -
    -        Copyright 2013 Michael Hart (michael.hart.au@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:
     
    -Permission is hereby granted, free of charge, to any person obtaining a copy of
    -this software and associated documentation files (the "Software"), to deal in
    -the Software without restriction, including without limitation the rights to
    -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
    -of the Software, and to permit persons to whom the Software is furnished to do
    -so, subject to the following conditions:
    +The above copyright notice and this permission notice shall be included in all copies or substantial 
    +portions of the Software.
     
    -The above copyright notice and this permission notice shall be included in all
    -copies or substantial portions of the Software.
    +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT 
    +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
    +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
    +WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    -SOFTWARE.
     
             
    @@ -5098,63 +4443,31 @@

    NOTICES AND INFORMATION

  • - axios 0.19.2 - MIT + debug 4.3.2 - MIT -

    https://github.com/axios/axios

    -
    • Copyright (c) 2014-present Matt Zabriskie
    +

    https://github.com/visionmedia/debug#readme

    +
    • Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca>
    • +
    • Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
    -        Copyright (c) 2014-present Matt Zabriskie
    -
    -Permission is hereby granted, free of charge, to any person obtaining a copy
    -of this software and associated documentation files (the "Software"), to deal
    -in the Software without restriction, including without limitation the rights
    -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    -copies of the Software, and to permit persons to whom the Software is
    -furnished to do so, subject to the following conditions:
    -
    -The above copyright notice and this permission notice shall be included in
    -all copies or substantial portions of the Software.
    -
    -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    -LIABILITY, WHETHER IN AN ACTION 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)
     
    -        
    -
    -
  • -
  • -
    - - balanced-match 1.0.0 - MIT - -

    https://github.com/juliangruber/balanced-match

    -
    • Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
    -
    -        (MIT)
    +Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca>
     
    -Copyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt;
    +Permission is hereby granted, free of charge, to any person obtaining a copy of this software 
    +and associated documentation files (the 'Software'), to deal in the Software without restriction, 
    +including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, 
    +and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
    +subject to the following conditions:
     
    -Permission is hereby granted, free of charge, to any person obtaining a copy of
    -this software and associated documentation files (the "Software"), to deal in
    -the Software without restriction, including without limitation the rights to
    -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
    -of the Software, and to permit persons to whom the Software is furnished to do
    -so, subject to the following conditions:
    +The above copyright notice and this permission notice shall be included in all copies or substantial 
    +portions of the Software.
     
    -The above copyright notice and this permission notice shall be included in all
    -copies or substantial portions of the Software.
    +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT 
    +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
    +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
    +WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    -SOFTWARE.
     
             
    @@ -5162,14 +4475,15 @@

    NOTICES AND INFORMATION

  • - base64-js 1.3.1 - MIT + decode-uri-component 0.2.0 - MIT -

    https://github.com/beatgammit/base64-js

    -
    • Copyright (c) 2014 Jameson Little
    +

    https://github.com/samverschueren/decode-uri-component#readme

    +
    • (c) Sam Verschueren (https://github.com/SamVerschueren)
    • +
    • Copyright (c) Sam Verschueren <sam.verschueren@gmail.com>
             The MIT License (MIT)
     
    -Copyright (c) 2014 Jameson Little
    +Copyright (c) Sam Verschueren <sam.verschueren@gmail.com> (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
    @@ -5195,18 +4509,15 @@ 

    NOTICES AND INFORMATION

  • - bl 4.0.3 - MIT + define-lazy-prop 2.0.0 - MIT -

    https://github.com/rvagg/bl

    - +

    https://github.com/sindresorhus/define-lazy-prop#readme

    +
    • (c) Sindre Sorhus (https://sindresorhus.com)
    • +
    • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
    -        The MIT License (MIT)
    -=====================
    -
    -Copyright (c) 2013-2019 bl contributors
    -----------------------------------
    +        MIT License
     
    -*bl contributors listed at <https://github.com/rvagg/bl#contributors>*
    +Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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:
     
    @@ -5220,14 +4531,15 @@ 

    NOTICES AND INFORMATION

  • - brace-expansion 1.1.11 - MIT + define-property 0.2.5 - MIT -

    https://github.com/juliangruber/brace-expansion

    -
    • Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
    +

    https://github.com/jonschlinkert/define-property

    +
    • Copyright (c) 2015 Jon Schlinkert
    • +
    • Copyright (c) 2015, Jon Schlinkert.
    -        MIT License
    +        The MIT License (MIT)
     
    -Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
    +Copyright (c) 2015, 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
    @@ -5236,16 +4548,16 @@ 

    NOTICES AND INFORMATION

    copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
    @@ -5253,15 +4565,15 @@

    NOTICES AND INFORMATION

  • - buffer 5.6.0 - MIT + define-property 2.0.2 - MIT -

    https://github.com/feross/buffer

    -
    • Copyright (c) Feross Aboukhadijeh, and other contributors.
    • -
    • Copyright (c) Feross Aboukhadijeh (http://feross.org), and other contributors.
    +

    https://github.com/jonschlinkert/define-property

    +
    • Copyright (c) 2015-2018, Jon Schlinkert.
    • +
    • Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert).
             The MIT License (MIT)
     
    -Copyright (c) Feross Aboukhadijeh, and other contributors.
    +Copyright (c) 2015-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
    @@ -5287,45 +4599,15 @@ 

    NOTICES AND INFORMATION

  • - buffer-crc32 0.2.13 - MIT - -

    https://github.com/brianloveswords/buffer-crc32

    -
    • Copyright (c) 2013 Brian J. Brennan
    -
    -        The MIT License
    -
    -Copyright (c) 2013 Brian J. Brennan
    -
    -Permission is hereby granted, free of charge, to any person obtaining a copy 
    -of this software and associated documentation files (the "Software"), to deal in 
    -the Software without restriction, including without limitation the rights to use, 
    -copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the 
    -Software, and to permit persons to whom the Software is furnished to do so, 
    -subject to the following conditions:
    -
    -The above copyright notice and this permission notice shall be included in all 
    -copies or substantial portions of the Software.
    -
    -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 
    -INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR 
    -PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
    -FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
    -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
    -
    -        
    -
    -
  • -
  • -
    - - bufferutil 4.0.1 - MIT + define-property 1.0.0 - MIT -

    https://github.com/websockets/bufferutil

    -
    • Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com> (http://2x.io)
    +

    https://github.com/jonschlinkert/define-property

    +
    • Copyright (c) 2015, 2017, Jon Schlinkert.
    • +
    • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
             The MIT License (MIT)
     
    -Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com> (http://2x.io)
    +Copyright (c) 2015, 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
    @@ -5334,16 +4616,16 @@ 

    NOTICES AND INFORMATION

    copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
    @@ -5351,9 +4633,9 @@

    NOTICES AND INFORMATION

  • - combined-stream 1.0.8 - MIT + delayed-stream 1.0.0 - MIT -

    https://github.com/felixge/node-combined-stream

    +

    https://github.com/felixge/node-delayed-stream

    • Copyright (c) 2011 Debuggable Limited <felix@debuggable.com>
             Copyright (c) 2011 Debuggable Limited <felix@debuggable.com>
    @@ -5382,95 +4664,86 @@ 

    NOTICES AND INFORMATION

  • - compress-commons 3.0.0 - MIT + diagnostic-channel 0.2.0 - MIT -

    https://github.com/archiverjs/node-compress-commons

    -
    • Copyright (c) 2014 Chris Talkington, contributors.
    +

    https://github.com/Microsoft/node-diagnostic-channel

    +
    • Copyright (c) Microsoft Corporation.
    -        Copyright (c) 2014 Chris Talkington, contributors.
    +            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:
    +    Copyright (c) Microsoft Corporation. All rights reserved.
     
    -The above copyright notice and this permission notice shall be
    -included in all copies or substantial portions of the Software.
    +    Permission is hereby granted, free of charge, to any person obtaining a copy
    +    of this software and associated documentation files (the "Software"), to deal
    +    in the Software without restriction, including without limitation the rights
    +    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +    copies of the Software, and to permit persons to whom the Software is
    +    furnished to do so, subject to the following conditions:
    +
    +    The above copyright notice and this permission notice shall be included in all
    +    copies or substantial portions of the Software.
    +
    +    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +    LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
    -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
    -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    -OTHER DEALINGS IN THE SOFTWARE.
             
  • - compress-commons 2.1.1 - MIT + diagnostic-channel-publishers 0.3.5 - MIT -

    https://github.com/archiverjs/node-compress-commons

    -
    • Copyright (c) 2014 Chris Talkington, contributors.
    +

    https://github.com/Microsoft/node-diagnostic-channel

    +
    • Copyright (c) Microsoft Corporation.
    -        Copyright (c) 2014 Chris Talkington, contributors.
    +            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:
    +    Copyright (c) Microsoft Corporation. All rights reserved.
     
    -The above copyright notice and this permission notice shall be
    -included in all copies or substantial portions of the Software.
    +    Permission is hereby granted, free of charge, to any person obtaining a copy
    +    of this software and associated documentation files (the "Software"), to deal
    +    in the Software without restriction, including without limitation the rights
    +    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +    copies of the Software, and to permit persons to whom the Software is
    +    furnished to do so, subject to the following conditions:
    +
    +    The above copyright notice and this permission notice shall be included in all
    +    copies or substantial portions of the Software.
    +
    +    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +    LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
    -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
    -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    -OTHER DEALINGS IN THE SOFTWARE.
             
  • - concat-map 0.0.1 - MIT + dir-glob 3.0.1 - MIT -

    https://github.com/substack/node-concat-map

    - +

    https://github.com/kevva/dir-glob#readme

    +
    • Copyright (c) Kevin Martensson <kevinmartensson@gmail.com>
    -        This software is released under the MIT license:
    +        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:
    +Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
     
    -The above copyright notice and this permission notice shall be included in all
    -copies or substantial portions of the Software.
    +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 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.
    +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
     
             
    @@ -5478,18 +4751,43 @@

    NOTICES AND INFORMATION

  • - core-util-is 1.0.2 - MIT + dom-serializer 0.1.1 - MIT -

    https://github.com/isaacs/core-util-is#readme

    -
    • Copyright Joyent, Inc. and other Node contributors.
    +

    https://github.com/cheeriojs/dom-renderer#readme

    +
    • Copyright (c) 2014
    +
    +        License
    +
    +(The MIT License)
    +
    +Copyright (c) 2014 The cheeriojs 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.
    +
    +        
    +
    +
  • +
  • +
    + + es6-iterator 2.0.3 - MIT + +

    https://github.com/medikoo/es6-iterator#readme

    +
    • Copyright (c) 2013-2017 Mariusz Nowak (www.medikoo.com)
    -        Copyright Node.js contributors. All rights reserved.
    +        The MIT License (MIT)
    +
    +Copyright (C) 2013-2017 Mariusz Nowak (www.medikoo.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
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
     furnished to do so, subject to the following conditions:
     
     The above copyright notice and this permission notice shall be included in
    @@ -5499,9 +4797,9 @@ 

    NOTICES AND INFORMATION

    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
    @@ -5509,34 +4807,33 @@

    NOTICES AND INFORMATION

  • - crc 3.8.0 - MIT + escape-string-regexp 1.0.5 - MIT -

    https://github.com/alexgorbatchev/node-crc

    -
    • Copyright 2014 Alex Gorbatchev
    • -
    • Copyright (c) 2014 Alex Gorbatchev
    +

    https://github.com/sindresorhus/escape-string-regexp

    +
    • (c) Sindre Sorhus (http://sindresorhus.com)
    • +
    • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
             The MIT License (MIT)
     
    -Copyright 2014 Alex Gorbatchev
    +Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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:
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
     
    -The above copyright notice and this permission notice shall be
    -included in all copies or substantial portions of the Software.
    +The above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
     
    -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
    -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
    -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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
     
             
    @@ -5544,70 +4841,89 @@

    NOTICES AND INFORMATION

  • - crc32-stream 3.0.1 - MIT + escape-string-regexp 2.0.0 - MIT -

    https://github.com/archiverjs/node-crc32-stream

    -
    • Copyright (c) 2014 Chris Talkington, contributors.
    +

    https://github.com/sindresorhus/escape-string-regexp#readme

    +
    • (c) Sindre Sorhus (https://sindresorhus.com)
    • +
    • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
    -        Copyright (c) 2014 Chris Talkington, contributors.
    +        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:
    +Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
     
    -The above copyright notice and this permission notice shall be
    -included in all copies or substantial portions of the Software.
    +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
    -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
    -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    -OTHER DEALINGS IN THE SOFTWARE.
             
  • - dashdash 1.14.1 - MIT + events 3.2.0 - MIT -

    https://github.com/trentm/node-dashdash#readme

    -
    • Copyright 2016 Trent Mick
    • -
    • Copyright 2016 Joyent, Inc.
    • -
    • Copyright (c) 2013 Joyent Inc.
    • -
    • Copyright (c) 2013 Trent Mick.
    +

    https://github.com/Gozala/events#readme

    +
    • Copyright Joyent, Inc. and other Node contributors.
    -        # This is the MIT license
    +        MIT
     
    -Copyright (c) 2013 Trent Mick. All rights reserved.
    -Copyright (c) 2013 Joyent Inc. All rights reserved.
    +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:
    +distribute, sublicense, and/or sell copies of the Software, and to permit
    +persons to whom the Software is furnished to do so, subject to the
    +following conditions:
     
     The above copyright notice and this permission notice shall be included
     in all copies or substantial portions of the Software.
     
     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
     OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
    -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
    -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
    -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
    -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
    +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
    +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
    +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
    +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
    +USE OR OTHER DEALINGS IN THE SOFTWARE.
    +
    +        
    +
    +
  • +
  • +
    + + event-target-shim 5.0.1 - MIT + +

    https://github.com/mysticatea/event-target-shim

    +
    • copyright 2015 Toru Nagashima.
    • +
    • Copyright (c) 2015 Toru Nagashima
    +
    +        The MIT License (MIT)
    +
    +Copyright (c) 2015 Toru Nagashima
    +
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
     
             
    @@ -5616,15 +4932,15 @@

    NOTICES AND INFORMATION

  • - date-utils 1.2.21 - MIT + expand-brackets 2.1.4 - MIT -

    https://jerrysievert.github.io/date-utils/

    -
    • (c) 2011 by Jerry Sievert
    • -
    • Copyright 2012 Twitter, Inc.
    • -
    • Copyright 2013 Twitter, Inc.
    • -
    • (c) 2005, 2013 jQuery Foundation, Inc.
    +

    https://github.com/jonschlinkert/expand-brackets

    +
    • Copyright (c) 2015-2016, Jon Schlinkert
    • +
    • Copyright (c) 2016, Jon Schlinkert (https://github.com/jonschlinkert).
    -        © 2011 by Jerry Sievert
    +        The MIT License (MIT)
    +
    +Copyright (c) 2015-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
    @@ -5644,209 +4960,39 @@ 

    NOTICES AND INFORMATION

    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +
    +
    +
  • +
  • +
    + + extend-shallow 3.0.2 - MIT + +

    https://github.com/jonschlinkert/extend-shallow

    +
    • Copyright (c) 2014-2015, 2017, Jon Schlinkert.
    • +
    • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
    +
    +        The MIT License (MIT)
     
    +Copyright (c) 2014-2015, 2017, Jon Schlinkert.
     
    -                                 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
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
     
    -       http://www.apache.org/licenses/LICENSE-2.0
    +The above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
     
    -   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.
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
     
             
    @@ -5854,31 +5000,33 @@

    NOTICES AND INFORMATION

  • - debug 3.1.0 - MIT + extend-shallow 2.0.1 - MIT -

    https://github.com/visionmedia/debug#readme

    -
    • Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca>
    • -
    • Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
    +

    https://github.com/jonschlinkert/extend-shallow

    +
    • Copyright (c) 2015 Jon Schlinkert
    • +
    • Copyright (c) 2014-2015, Jon Schlinkert.
    -        (The MIT License)
    -
    -Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca>
    +        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:
    +Copyright (c) 2014-2015, Jon Schlinkert.
     
    -The above copyright notice and this permission notice shall be included in all copies or substantial 
    -portions of the Software.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or 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.
    +The above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
     
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
     
             
    @@ -5886,108 +5034,15 @@

    NOTICES AND INFORMATION

  • - debug 3.2.6 - MIT + extglob 2.0.4 - MIT -

    https://github.com/visionmedia/debug#readme

    -
    • Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca>
    • -
    • Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
    +

    https://github.com/micromatch/extglob

    +
    • Copyright (c) 2015-2017, Jon Schlinkert.
    • +
    • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
    -        (The MIT License)
    +        The MIT License (MIT)
     
    -Copyright (c) 2014 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.
    -
    -
    -        
    -
    -
  • -
  • -
    - - debug 4.1.1 - MIT - -

    https://github.com/visionmedia/debug#readme

    -
    • Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca>
    • -
    • Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
    -
    -        (The MIT License)
    -
    -Copyright (c) 2014 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.
    -
    -
    -        
    -
    -
  • -
  • -
    - - debug 2.6.9 - MIT - -

    https://github.com/visionmedia/debug#readme

    -
    • Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca>
    • -
    • Copyright (c) 2014-2016 TJ Holowaychuk <tj@vision-media.ca>
    -
    -        (The MIT License)
    -
    -Copyright (c) 2014 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.
    -
    -
    -        
    -
    -
  • -
  • -
    - - delayed-stream 1.0.0 - MIT - -

    https://github.com/felixge/node-delayed-stream

    -
    • Copyright (c) 2011 Debuggable Limited <felix@debuggable.com>
    -
    -        Copyright (c) 2011 Debuggable Limited <felix@debuggable.com>
    +Copyright (c) 2015-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
    @@ -6013,104 +5068,14 @@ 

    NOTICES AND INFORMATION

  • - diagnostic-channel 0.2.0 - MIT - -

    https://github.com/Microsoft/node-diagnostic-channel

    -
    • Copyright (c) Microsoft Corporation.
    -
    -            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
    -
    -        
    -
    -
  • -
  • -
    - - diagnostic-channel-publishers 0.3.5 - MIT - -

    https://github.com/Microsoft/node-diagnostic-channel

    -
    • Copyright (c) Microsoft Corporation.
    -
    -            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
    -
    -        
    -
    -
  • -
  • -
    - - dom-serializer 0.1.1 - MIT - -

    https://github.com/cheeriojs/dom-renderer#readme

    -
    • Copyright (c) 2014
    -
    -        License
    -
    -(The MIT License)
    -
    -Copyright (c) 2014 The cheeriojs 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.
    -
    -        
    -
    -
  • -
  • -
    - - ecc-jsbn 0.1.2 - MIT + fast-glob 3.2.5 - MIT -

    https://github.com/quartzjer/ecc-jsbn

    -
    • Copyright (c) 2003-2005 Tom Wu
    • -
    • Copyright (c) 2014 Jeremie Miller
    +

    https://github.com/mrmlnc/fast-glob#readme

    +
    • Copyright (c) Denis Malinochkin
             The MIT License (MIT)
     
    -Copyright (c) 2014 Jeremie Miller
    +Copyright (c) Denis Malinochkin
     
     Permission is hereby granted, free of charge, to any person obtaining a copy
     of this software and associated documentation files (the "Software"), to deal
    @@ -6129,20 +5094,23 @@ 

    NOTICES AND INFORMATION

    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +
  • - end-of-stream 1.4.4 - MIT + fill-range 4.0.0 - MIT -

    https://github.com/mafintosh/end-of-stream

    -
    • Copyright (c) 2014 Mathias Buus
    +

    https://github.com/jonschlinkert/fill-range

    +
    • Copyright (c) 2014-2017, Jon Schlinkert
    • +
    • Copyright (c) 2014-2015, 2017, Jon Schlinkert.
    • +
    • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
             The MIT License (MIT)
     
    -Copyright (c) 2014 Mathias Buus
    +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
    @@ -6161,20 +5129,22 @@ 

    NOTICES AND INFORMATION

    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +
  • - es6-iterator 2.0.3 - MIT + fill-range 7.0.1 - MIT -

    https://github.com/medikoo/es6-iterator#readme

    -
    • Copyright (c) 2013-2017 Mariusz Nowak (www.medikoo.com)
    +

    https://github.com/jonschlinkert/fill-range

    +
    • Copyright (c) 2014-present, Jon Schlinkert.
    • +
    • Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert).
             The MIT License (MIT)
     
    -Copyright (C) 2013-2017 Mariusz Nowak (www.medikoo.com)
    +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
    @@ -6200,15 +5170,45 @@ 

    NOTICES AND INFORMATION

  • - escape-string-regexp 1.0.5 - MIT + follow-redirects 1.13.3 - MIT -

    https://github.com/sindresorhus/escape-string-regexp

    -
    • (c) Sindre Sorhus (http://sindresorhus.com)
    • -
    • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
    +

    https://github.com/follow-redirects/follow-redirects

    +
    • Copyright 2014-present Olivier Lalonde <olalonde@gmail.com> , James Talmage <james@talmage.io> , Ruben Verborgh
    +
    +        Copyright 2014–present Olivier Lalonde <olalonde@gmail.com>, James Talmage <james@talmage.io>, 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.
    +
    +        
    +
    +
  • +
  • +
    + + for-in 1.0.2 - MIT + +

    https://github.com/jonschlinkert/for-in

    +
    • Copyright (c) 2014-2017, Jon Schlinkert.
    • +
    • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
             The MIT License (MIT)
     
    -Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
    +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
    @@ -6234,21 +5234,30 @@ 

    NOTICES AND INFORMATION

  • - escape-string-regexp 2.0.0 - MIT + form-data 2.5.1 - MIT -

    https://github.com/sindresorhus/escape-string-regexp#readme

    -
    • (c) Sindre Sorhus (https://sindresorhus.com)
    • -
    • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
    +

    https://github.com/form-data/form-data#readme

    +
    • Copyright (c) 2012 Felix Geisendorfer (felix@debuggable.com) and contributors
    -        MIT License
    -
    -Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
    +        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:
    + Permission is hereby granted, free of charge, to any person obtaining a copy
    + of this software and associated documentation files (the "Software"), to deal
    + in the Software without restriction, including without limitation the rights
    + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    + copies of the Software, and to permit persons to whom the Software is
    + furnished to do so, subject to the following conditions:
     
    -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
    + The above copyright notice and this permission notice shall be included in
    + all copies or substantial portions of the Software.
     
    -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    + THE SOFTWARE.
     
             
    @@ -6256,33 +5265,30 @@

    NOTICES AND INFORMATION

  • - events 3.2.0 - MIT + form-data 3.0.0 - MIT -

    https://github.com/Gozala/events#readme

    -
    • Copyright Joyent, Inc. and other Node contributors.
    +

    https://github.com/form-data/form-data#readme

    +
    • Copyright (c) 2012 Felix Geisendorfer (felix@debuggable.com) and contributors
    -        MIT
    -
    -Copyright Joyent, Inc. and other Node contributors.
    +        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:
    + Permission is hereby granted, free of charge, to any person obtaining a copy
    + of this software and associated documentation files (the "Software"), to deal
    + in the Software without restriction, including without limitation the rights
    + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    + copies of the Software, and to permit persons to whom the Software is
    + furnished to do so, subject to the following conditions:
     
    -The above copyright notice and this permission notice shall be included
    -in all copies or substantial portions of the Software.
    + The above copyright notice and this permission notice shall be included in
    + all copies or substantial portions of the Software.
     
    -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
    -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
    -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
    -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    + THE SOFTWARE.
     
             
    @@ -6290,15 +5296,15 @@

    NOTICES AND INFORMATION

  • - event-target-shim 5.0.1 - MIT + fragment-cache 0.2.1 - MIT -

    https://github.com/mysticatea/event-target-shim

    -
    • copyright 2015 Toru Nagashima.
    • -
    • Copyright (c) 2015 Toru Nagashima
    +

    https://github.com/jonschlinkert/fragment-cache

    +
    • Copyright (c) 2016-2017, Jon Schlinkert.
    • +
    • Copyright (c) 2016, Jon Schlinkert (https://github.com/jonschlinkert).
             The MIT License (MIT)
     
    -Copyright (c) 2015 Toru Nagashima
    +Copyright (c) 2016-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
    @@ -6307,17 +5313,16 @@ 

    NOTICES AND INFORMATION

    copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
    @@ -6325,34 +5330,28 @@

    NOTICES AND INFORMATION

  • - extend 3.0.2 - MIT + fs-extra 8.1.0 - MIT -

    https://github.com/justmoon/node-extend#readme

    -
    • Copyright (c) 2014 Stefan Thomas
    +

    https://github.com/jprichardson/node-fs-extra

    +
    • Copyright (c) 2011-2017 JP Richardson
    • +
    • Copyright (c) 2011-2017 JP Richardson (https://github.com/jprichardson)
    • +
    • Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and Contributors
    -        The MIT License (MIT)
    -
    -Copyright (c) 2014 Stefan Thomas
    +        (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:
    +Copyright (c) 2011-2017 JP Richardson
     
    -The above copyright notice and this permission notice shall be
    -included in all copies or substantial portions of the Software.
    +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
    +(the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,
    + merge, publish, distribute, sublicense, and/or 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.
    +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
     
    +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
    +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
    +OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
    + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
     
             
    @@ -6360,12 +5359,15 @@

    NOTICES AND INFORMATION

  • - extsprintf 1.3.0 - MIT + get-value 2.0.6 - MIT -

    https://github.com/davepacheco/node-extsprintf

    -
    • Copyright (c) 2012, Joyent, Inc.
    +

    https://github.com/jonschlinkert/get-value

    +
    • Copyright (c) 2014-2015, Jon Schlinkert.
    • +
    • Copyright (c) 2014-2016, Jon Schlinkert.
    -        Copyright (c) 2012, Joyent, Inc. All rights reserved.
    +        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
    @@ -6383,7 +5385,7 @@ 

    NOTICES AND INFORMATION

    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE.
    @@ -6391,14 +5393,15 @@

    NOTICES AND INFORMATION

  • - fast-deep-equal 3.1.1 - MIT + git-up 4.0.1 - MIT -

    https://github.com/epoberezkin/fast-deep-equal#readme

    -
    • Copyright (c) 2017 Evgeny Poberezkin
    +

    https://github.com/IonicaBizau/git-up

    +
    • (c) Ionica Bizau
    • +
    • Copyright (c) 2015-19 Ionica Bizau <bizauionica@gmail.com> (https://ionicabizau.net)
    -        MIT License
    +        The MIT License (MIT)
     
    -Copyright (c) 2017 Evgeny Poberezkin
    +Copyright (c) 2015-19 Ionică Bizău <bizauionica@gmail.com> (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
    @@ -6424,33 +5427,33 @@ 

    NOTICES AND INFORMATION

  • - fast-json-stable-stringify 2.1.0 - MIT + git-url-parse 11.1.2 - MIT -

    https://github.com/epoberezkin/fast-json-stable-stringify

    -
    • Copyright (c) 2013 James Halliday
    • -
    • Copyright (c) 2017 Evgeny Poberezkin
    +

    https://github.com/IonicaBizau/git-url-parse

    +
    • (c) Ionica Bizau
    • +
    • Copyright (c) 2015-19 Ionica Bizau <bizauionica@gmail.com> (https://ionicabizau.net)
    -        This software is released under the MIT license:
    +        The MIT License (MIT)
     
    -Copyright (c) 2017 Evgeny Poberezkin
    -Copyright (c) 2013 James Halliday
    +Copyright (c) 2015-19 Ionică Bizău <bizauionica@gmail.com> (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:
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
     
     The above copyright notice and this permission notice shall be included in all
     copies or substantial portions of the Software.
     
     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
    -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
    -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
    -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
    -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
     
             
    @@ -6458,29 +5461,33 @@

    NOTICES AND INFORMATION

  • - follow-redirects 1.5.10 - MIT + globby 6.1.0 - MIT -

    https://github.com/follow-redirects/follow-redirects

    -
    • Copyright 2014-present Olivier Lalonde <olalonde@gmail.com> , James Talmage <james@talmage.io> , Ruben Verborgh
    +

    https://github.com/sindresorhus/globby#readme

    +
    • (c) Sindre Sorhus (https://sindresorhus.com)
    • +
    • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
    -        Copyright 2014–present Olivier Lalonde <olalonde@gmail.com>, James Talmage <james@talmage.io>, Ruben Verborgh
    +        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:
    +Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
     
    -The above copyright notice and this permission notice shall be included in all
    -copies or substantial portions of the Software.
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
     
     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
    -IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
     
             
    @@ -6488,61 +5495,20 @@

    NOTICES AND INFORMATION

  • - form-data 2.3.3 - MIT + globby 11.0.3 - MIT -

    https://github.com/form-data/form-data#readme

    -
    • Copyright (c) 2012 Felix Geisendorfer (felix@debuggable.com) and contributors
    +

    https://github.com/sindresorhus/globby#readme

    +
    • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
    -        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.
    +        MIT License
     
    -        
    -
    -
  • -
  • -
    - - form-data 2.5.1 - MIT - -

    https://github.com/form-data/form-data#readme

    -
    • Copyright (c) 2012 Felix Geisendorfer (felix@debuggable.com) and contributors
    -
    -        Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors
    +Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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:
    +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
     
    - The above copyright notice and this permission notice shall be included in
    - all copies or substantial portions of the Software.
    +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
     
    - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    - LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
     
             
    @@ -6550,45 +5516,47 @@

    NOTICES AND INFORMATION

  • - form-data 3.0.0 - MIT + glob-gitignore 1.0.14 - MIT -

    https://github.com/form-data/form-data#readme

    -
    • Copyright (c) 2012 Felix Geisendorfer (felix@debuggable.com) and contributors
    +

    https://github.com/kaelzhang/node-glob-gitignore#readme

    +
    • Copyright (c) 2013
    -        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:
    +        Copyright (c) 2013 kaelzhang <i@kael.me>, contributors
    +http://kael.me/
     
    - The above copyright notice and this permission notice shall be included in
    - all copies or substantial portions of the Software.
    +Permission is hereby granted, free of charge, to any person obtaining
    +a copy of this software and associated documentation files (the
    +"Software"), to deal in the Software without restriction, including
    +without limitation the rights to use, copy, modify, merge, publish,
    +distribute, sublicense, and/or 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.
    +The above copyright notice and this permission notice shall be
    +included in all copies or substantial portions of the Software.
     
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
    +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
    +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
    +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
             
  • - fs-constants 1.0.0 - MIT + has-value 1.0.0 - MIT -

    https://github.com/mafintosh/fs-constants

    -
    • Copyright (c) 2018 Mathias Buus
    +

    https://github.com/jonschlinkert/has-value

    +
    • Copyright (c) 2014-2017, Jon Schlinkert.
    • +
    • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
             The MIT License (MIT)
     
    -Copyright (c) 2018 Mathias Buus
    +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
    @@ -6614,47 +5582,21 @@ 

    NOTICES AND INFORMATION

  • - fs-extra 8.1.0 - MIT + has-value 0.3.1 - MIT -

    https://github.com/jprichardson/node-fs-extra

    -
    • Copyright (c) 2011-2017 JP Richardson
    • -
    • Copyright (c) 2011-2017 JP Richardson (https://github.com/jprichardson)
    • -
    • Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and Contributors
    +

    https://github.com/jonschlinkert/has-value

    +
    • Copyright (c) 2014-2016, Jon Schlinkert.
    • +
    • Copyright (c) 2016, Jon Schlinkert (https://github.com/jonschlinkert).
    -        (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 MIT License (MIT)
     
    -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
    -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
    -OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 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 (c) 2014-2016, Jon Schlinkert.
     
    -        
    -
    -
  • -
  • -
    - - getpass 0.1.7 - MIT - -

    https://github.com/arekinath/node-getpass#readme

    -
    • Copyright Joyent, Inc.
    • -
    • Copyright 2016, Joyent, Inc.
    -
    -        Copyright Joyent, Inc. 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
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
     furnished to do so, subject to the following conditions:
     
     The above copyright notice and this permission notice shall be included in
    @@ -6664,9 +5606,9 @@ 

    NOTICES AND INFORMATION

    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
    @@ -6674,15 +5616,16 @@

    NOTICES AND INFORMATION

  • - git-up 4.0.1 - MIT + has-values 1.0.0 - MIT -

    https://github.com/IonicaBizau/git-up

    -
    • (c) Ionica Bizau
    • -
    • Copyright (c) 2015-19 Ionica Bizau <bizauionica@gmail.com> (https://ionicabizau.net)
    +

    https://github.com/jonschlinkert/has-values

    +
    • Copyright (c) 2014-2017, Jon Schlinkert
    • +
    • Copyright (c) 2014-2015, 2017, Jon Schlinkert.
    • +
    • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
             The MIT License (MIT)
     
    -Copyright (c) 2015-19 Ionică Bizău <bizauionica@gmail.com> (https://ionicabizau.net)
    +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
    @@ -6691,16 +5634,16 @@ 

    NOTICES AND INFORMATION

    copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
    @@ -6708,15 +5651,16 @@

    NOTICES AND INFORMATION

  • - git-url-parse 11.1.2 - MIT + has-values 0.1.4 - MIT -

    https://github.com/IonicaBizau/git-url-parse

    -
    • (c) Ionica Bizau
    • -
    • Copyright (c) 2015-19 Ionica Bizau <bizauionica@gmail.com> (https://ionicabizau.net)
    +

    https://github.com/jonschlinkert/has-values

    +
    • Copyright (c) 2014-2015, Jon Schlinkert.
    • +
    • Copyright (c) 2014-2016, Jon Schlinkert.
    • +
    • Copyright (c) 2016, Jon Schlinkert (https://github.com/jonschlinkert).
             The MIT License (MIT)
     
    -Copyright (c) 2015-19 Ionică Bizău <bizauionica@gmail.com> (https://ionicabizau.net)
    +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
    @@ -6725,69 +5669,16 @@ 

    NOTICES AND INFORMATION

    copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -
    -
    -
  • -
  • -
    - - glob-gitignore 1.0.14 - MIT - -

    https://github.com/kaelzhang/node-glob-gitignore#readme

    -
    • Copyright (c) 2013
    -
    -        Copyright (c) 2013 kaelzhang <i@kael.me>, contributors
    -http://kael.me/
    -
    -Permission is hereby granted, free of charge, to any person obtaining
    -a copy of this software and associated documentation files (the
    -"Software"), to deal in the Software without restriction, including
    -without limitation the rights to use, copy, modify, merge, publish,
    -distribute, sublicense, and/or sell copies of the Software, and to
    -permit persons to whom the Software is furnished to do so, subject to
    -the following conditions:
    -
    -The above copyright notice and this permission notice shall be
    -included in all copies or substantial portions of the Software.
    -
    -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
    -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
    -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
    -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
    -        
    -
    -
  • -
  • -
    - - har-validator 5.1.5 - MIT - -

    https://github.com/ahmadnassri/node-har-validator

    -
    • Copyright (c) 2018 Ahmad Nassri <ahmad@ahmadnassri.com>
    -
    -        MIT License
    -
    -Copyright (c) 2018 Ahmad Nassri <ahmad@ahmadnassri.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.
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
     
             
    @@ -6890,39 +5781,6 @@

    NOTICES AND INFORMATION

  • -
  • -
    - - http-signature 1.2.0 - MIT - -

    https://github.com/joyent/node-http-signature/

    -
    • Copyright Joyent, Inc.
    • -
    • Copyright 2012 Joyent, Inc.
    • -
    • Copyright 2015 Joyent, Inc.
    • -
    • Copyright (c) 2011 Joyent, Inc.
    -
    -        Copyright Joyent, Inc. 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.
    -
    -        
    -
    -
  • @@ -6978,6 +5836,74 @@

    NOTICES AND INFORMATION

    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +
  • +
    +
  • +
  • +
    + + is-accessor-descriptor 1.0.0 - MIT + +

    https://github.com/jonschlinkert/is-accessor-descriptor

    +
    • Copyright (c) 2015-2017, Jon Schlinkert.
    • +
    • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
    +
    +        The MIT License (MIT)
    +
    +Copyright (c) 2015-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.
    +
    +        
    +
    +
  • +
  • +
    + + is-accessor-descriptor 0.1.6 - MIT + +

    https://github.com/jonschlinkert/is-accessor-descriptor

    +
    • Copyright (c) 2015, Jon Schlinkert.
    • +
    • Copyright (c) 2015 Jon Schlinkert (https://github.com/jonschlinkert)
    +
    +        The MIT License (MIT)
    +
    +Copyright (c) 2015, 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
    @@ -7012,15 +5938,15 @@ 

    NOTICES AND INFORMATION

  • - isobject 3.0.1 - MIT + is-buffer 1.1.6 - MIT -

    https://github.com/jonschlinkert/isobject

    -
    • Copyright (c) 2014-2017, Jon Schlinkert.
    • -
    • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
    +

    https://github.com/feross/is-buffer#readme

    +
    • Copyright (c) Feross Aboukhadijeh
    • +
    • Copyright (c) Feross Aboukhadijeh (http://feross.org).
             The MIT License (MIT)
     
    -Copyright (c) 2014-2017, Jon Schlinkert.
    +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
    @@ -7039,21 +5965,22 @@ 

    NOTICES AND INFORMATION

    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +
  • - is-plain-object 2.0.4 - MIT + is-data-descriptor 1.0.0 - MIT -

    https://github.com/jonschlinkert/is-plain-object

    -
    • Copyright (c) 2014-2017, Jon Schlinkert.
    • +

      https://github.com/jonschlinkert/is-data-descriptor

      +
      • Copyright (c) 2015-2017, Jon Schlinkert.
      • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
               The MIT License (MIT)
       
      -Copyright (c) 2014-2017, Jon Schlinkert.
      +Copyright (c) 2015-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
      @@ -7079,15 +6006,15 @@ 

      NOTICES AND INFORMATION

    • - is-plain-object 4.1.1 - MIT + is-data-descriptor 0.1.4 - MIT -

      https://github.com/jonschlinkert/is-plain-object

      -
      • Copyright (c) 2014-2017, Jon Schlinkert.
      • -
      • Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert).
      +

      https://github.com/jonschlinkert/is-data-descriptor

      +
      • Copyright (c) 2015, Jon Schlinkert.
      • +
      • Copyright (c) 2015 Jon Schlinkert (https://github.com/jonschlinkert)
               The MIT License (MIT)
       
      -Copyright (c) 2014-2017, Jon Schlinkert.
      +Copyright (c) 2015, 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
      @@ -7113,15 +6040,15 @@ 

      NOTICES AND INFORMATION

    • - is-ssh 1.3.1 - MIT + is-descriptor 1.0.2 - MIT -

      https://github.com/IonicaBizau/node-is-ssh

      -
      • (c) Ionica Bizau
      • -
      • Copyright (c) 2015-19 Ionica Bizau <bizauionica@gmail.com> (http://ionicabizau.net)
      +

      https://github.com/jonschlinkert/is-descriptor

      +
      • Copyright (c) 2015-2017, Jon Schlinkert.
      • +
      • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
               The MIT License (MIT)
       
      -Copyright (c) 2015-19 Ionică Bizău <bizauionica@gmail.com> (http://ionicabizau.net)
      +Copyright (c) 2015-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
      @@ -7130,70 +6057,69 @@ 

      NOTICES AND INFORMATION

      copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
    • - isstream 0.1.2 - MIT + is-descriptor 0.1.6 - MIT -

      https://github.com/rvagg/isstream

      -
      • Copyright (c) 2015 Rod Vagg
      • -
      • Copyright (c) 2015 Rod Vagg rvagg (https://twitter.com/rvagg)
      +

      https://github.com/jonschlinkert/is-descriptor

      +
      • Copyright (c) 2015-2017, Jon Schlinkert.
      • +
      • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
               The MIT License (MIT)
      -=====================
      -
      -Copyright (c) 2015 Rod Vagg
      ----------------------------
       
      -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
      +Copyright (c) 2015-2017, Jon Schlinkert.
       
      -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
      +Permission is hereby granted, free of charge, to any person obtaining a copy
      +of this software and associated documentation files (the "Software"), to deal
      +in the Software without restriction, including without limitation the rights
      +to use, copy, modify, merge, publish, distribute, sublicense, and/or 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.
      +The above copyright notice and this permission notice shall be included in
      +all copies or substantial portions of the Software.
       
      +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
      +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
      +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
      +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
      +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
      +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
      +THE SOFTWARE.
               
    • - is-typedarray 1.0.0 - MIT + is-docker 2.1.1 - MIT -

      https://github.com/hughsk/is-typedarray

      - +

      https://github.com/sindresorhus/is-docker#readme

      +
      • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
      -        This software is released under the MIT license:
      +        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:
      +Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
       
      -The above copyright notice and this permission notice shall be included in all
      -copies or substantial portions of the Software.
      +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 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.
      +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
      +
      +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
       
               
      @@ -7201,15 +6127,15 @@

      NOTICES AND INFORMATION

    • - is-wsl 1.1.0 - MIT + is-extendable 1.0.1 - MIT -

      https://github.com/sindresorhus/is-wsl#readme

      -
      • (c) Sindre Sorhus (https://sindresorhus.com)
      • -
      • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
      +

      https://github.com/jonschlinkert/is-extendable

      +
      • Copyright (c) 2015-2017, Jon Schlinkert.
      • +
      • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
               The MIT License (MIT)
       
      -Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
      +Copyright (c) 2015-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
      @@ -7228,87 +6154,73 @@ 

      NOTICES AND INFORMATION

      LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -
    • - jsbn 0.1.1 - MIT + is-extendable 0.1.1 - MIT -

      https://github.com/andyperlitch/jsbn#readme

      -
      • Copyright (c) 2005 Tom Wu
      • -
      • Copyright (c) 2003-2005 Tom Wu
      • -
      • Copyright (c) 2005-2009 Tom Wu
      +

      https://github.com/jonschlinkert/is-extendable

      +
      • Copyright (c) 2015 Jon Schlinkert
      • +
      • Copyright (c) 2015, Jon Schlinkert.
      -        Licensing
      ----------
      +        The MIT License (MIT)
       
      -This software is covered under the following copyright:
      +Copyright (c) 2015, 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:
       
      -/*
      - * Copyright (c) 2003-2005  Tom Wu
      - * 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" AND WITHOUT WARRANTY OF ANY KIND, 
      - * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
      - * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
      - *
      - * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
      - * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER
      - * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF
      - * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
      - * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
      - *
      - * In addition, the following condition applies:
      - *
      - * All redistributions must retain an intact copy of this copyright notice
      - * and disclaimer.
      - */
      +The above copyright notice and this permission notice shall be included in
      +all copies or substantial portions of the Software.
       
      -Address all questions regarding this license to:
      +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
      +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
      +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
      +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
      +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
      +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
      +THE SOFTWARE.
       
      -  Tom Wu
      -  tjw@cs.Stanford.EDU
               
    • - jsonfile 4.0.0 - MIT + is-extglob 2.1.1 - MIT -

      https://github.com/jprichardson/node-jsonfile#readme

      -
      • Copyright 2012-2016, JP Richardson <jprichardson@gmail.com>
      • -
      • Copyright (c) 2012-2015, JP Richardson <jprichardson@gmail.com>
      +

      https://github.com/jonschlinkert/is-extglob

      +
      • Copyright (c) 2014-2016, Jon Schlinkert.
      • +
      • Copyright (c) 2016, Jon Schlinkert (https://github.com/jonschlinkert).
      -        (The MIT License)
      +        The MIT License (MIT)
       
      -Copyright (c) 2012-2015, JP Richardson <jprichardson@gmail.com>
      +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:
      +Permission is hereby granted, free of charge, to any person obtaining a copy
      +of this software and associated documentation files (the "Software"), to deal
      +in the Software without restriction, including without limitation the rights
      +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
      +copies of the Software, and to permit persons to whom the Software is
      +furnished to do so, subject to the following conditions:
       
      -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
      +The above copyright notice and this permission notice shall be included in
      +all copies or substantial portions of the Software.
       
      -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
      -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
      -OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
      +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
      +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
      +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
      +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
      +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
      +THE SOFTWARE.
       
               
      @@ -7316,14 +6228,15 @@

      NOTICES AND INFORMATION

    • - json-schema-traverse 0.4.1 - MIT + is-glob 4.0.1 - MIT -

      https://github.com/epoberezkin/json-schema-traverse#readme

      -
      • Copyright (c) 2017 Evgeny Poberezkin
      +

      https://github.com/micromatch/is-glob

      +
      • Copyright (c) 2014-2017, Jon Schlinkert.
      • +
      • Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert).
      -        MIT License
      +        The MIT License (MIT)
       
      -Copyright (c) 2017 Evgeny Poberezkin
      +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
      @@ -7332,16 +6245,16 @@ 

      NOTICES AND INFORMATION

      copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
      @@ -7349,12 +6262,15 @@

      NOTICES AND INFORMATION

    • - jsprim 1.4.1 - MIT + is-glob 3.1.0 - MIT -

      https://github.com/joyent/node-jsprim#readme

      -
      • Copyright (c) 2012, Joyent, Inc.
      +

      https://github.com/jonschlinkert/is-glob

      +
      • Copyright (c) 2014-2016, Jon Schlinkert.
      • +
      • Copyright (c) 2016, Jon Schlinkert (https://github.com/jonschlinkert).
      -        Copyright (c) 2012, Joyent, Inc. All rights reserved.
      +        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
      @@ -7372,7 +6288,7 @@ 

      NOTICES AND INFORMATION

      AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE.
      @@ -7380,28 +6296,34 @@

      NOTICES AND INFORMATION

    • - jwa 1.4.1 - MIT + is-number 3.0.0 - MIT -

      https://github.com/brianloveswords/node-jwa#readme

      -
      • Copyright (c) 2013 Brian J. Brennan
      +

      https://github.com/jonschlinkert/is-number

      +
      • Copyright (c) 2014-2016, Jon Schlinkert
      • +
      • Copyright (c) 2014-2015, Jon Schlinkert.
      • +
      • Copyright (c) 2016, Jon Schlinkert (https://github.com/jonschlinkert).
      -        Copyright (c) 2013 Brian J. Brennan
      +        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:
      +Copyright (c) 2014-2016, Jon Schlinkert
       
      -The above copyright notice and this permission notice shall be included in all 
      -copies or substantial portions of the Software.
      +Permission is hereby granted, free of charge, to any person obtaining a copy
      +of this software and associated documentation files (the "Software"), to deal
      +in the Software without restriction, including without limitation the rights
      +to use, copy, modify, merge, publish, distribute, sublicense, and/or 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.
      +The above copyright notice and this permission notice shall be included in
      +all copies or substantial portions of the Software.
      +
      +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
      +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
      +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
      +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
      +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
      +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
      +THE SOFTWARE.
       
               
      @@ -7409,29 +6331,33 @@

      NOTICES AND INFORMATION

    • - jws 3.2.2 - MIT + is-number 7.0.0 - MIT -

      https://github.com/brianloveswords/node-jws#readme

      -
      • Copyright (c) 2013 Brian J. Brennan
      • -
      • Copyright (c) 2013-2015 Brian J. Brennan
      +

      https://github.com/jonschlinkert/is-number

      +
      • Copyright (c) 2014-present, Jon Schlinkert.
      • +
      • Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert).
      -        Copyright (c) 2013 Brian J. Brennan
      +        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:
      +Copyright (c) 2014-present, Jon Schlinkert.
       
      -The above copyright notice and this permission notice shall be included in all 
      -copies or substantial portions of the Software.
      +Permission is hereby granted, free of charge, to any person obtaining a copy
      +of this software and associated documentation files (the "Software"), to deal
      +in the Software without restriction, including without limitation the rights
      +to use, copy, modify, merge, publish, distribute, sublicense, and/or 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.
      +The above copyright notice and this permission notice shall be included in
      +all copies or substantial portions of the Software.
      +
      +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
      +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
      +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
      +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
      +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
      +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
      +THE SOFTWARE.
       
               
      @@ -7439,34 +6365,34 @@

      NOTICES AND INFORMATION

    • - lazystream 1.0.0 - MIT + isobject 2.1.0 - MIT -

      https://github.com/jpommerening/node-lazystream

      -
      • Copyright (c) 2013 J. Pommerening, contributors.
      +

      https://github.com/jonschlinkert/isobject

      +
      • Copyright (c) 2014-2015, Jon Schlinkert.
      • +
      • Copyright (c) 2014-2016, Jon Schlinkert.
      • +
      • Copyright (c) 2016, Jon Schlinkert (https://github.com/jonschlinkert).
      -        Copyright (c) 2013 J. Pommerening, contributors.
      +        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:
      +Copyright (c) 2014-2016, Jon Schlinkert.
       
      -The above copyright notice and this permission notice shall be
      -included in all copies or substantial portions of the Software.
      +Permission is hereby granted, free of charge, to any person obtaining a copy
      +of this software and associated documentation files (the "Software"), to deal
      +in the Software without restriction, including without limitation the rights
      +to use, copy, modify, merge, publish, distribute, sublicense, and/or 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.
      +The above copyright notice and this permission notice shall be included in
      +all copies or substantial portions of the Software.
       
      +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
      +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
      +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
      +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
      +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
      +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
      +THE SOFTWARE.
       
               
      @@ -7474,60 +6400,100 @@

      NOTICES AND INFORMATION

    • - lodash 4.17.19 - MIT + isobject 3.0.1 - MIT -

      https://lodash.com/

      -
      • Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
      • -
      • Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
      • -
      • copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
      +

      https://github.com/jonschlinkert/isobject

      +
      • Copyright (c) 2014-2017, Jon Schlinkert.
      • +
      • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
      -        Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
      +        The MIT License (MIT)
       
      -Based on Underscore.js, copyright Jeremy Ashkenas,
      -DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
      +Copyright (c) 2014-2017, Jon Schlinkert.
       
      -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
      +Permission is hereby granted, free of charge, to any person obtaining a copy
      +of this software and associated documentation files (the "Software"), to deal
      +in the Software without restriction, including without limitation the rights
      +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
      +copies of the Software, and to permit persons to whom the Software is
      +furnished to do so, subject to the following conditions:
       
      -The following license applies to all parts of this software except as
      -documented below:
      +The above copyright notice and this permission notice shall be included in
      +all copies or substantial portions of the Software.
       
      -====
      +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
      +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
      +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
      +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
      +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
      +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
      +THE SOFTWARE.
      +        
      +
      +
    • +
    • +
      + + is-plain-object 2.0.4 - MIT + +

      https://github.com/jonschlinkert/is-plain-object

      +
      • Copyright (c) 2014-2017, Jon Schlinkert.
      • +
      • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
      +
      +        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:
      +Copyright (c) 2014-2017, Jon Schlinkert.
       
      -The above copyright notice and this permission notice shall be
      -included in all copies or substantial portions of the Software.
      +Permission is hereby granted, free of charge, to any person obtaining a copy
      +of this software and associated documentation files (the "Software"), to deal
      +in the Software without restriction, including without limitation the rights
      +to use, copy, modify, merge, publish, distribute, sublicense, and/or 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.
      +The above copyright notice and this permission notice shall be included in
      +all copies or substantial portions of the Software.
       
      -====
      +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
      +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
      +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
      +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
      +LIABILITY, WHETHER IN AN ACTION 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.
      +        
      +
      +
    • +
    • +
      + + is-plain-object 4.1.1 - MIT + +

      https://github.com/jonschlinkert/is-plain-object

      +
      • Copyright (c) 2014-2017, Jon Schlinkert.
      • +
      • Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert).
      +
      +        The MIT License (MIT)
       
      -CC0: http://creativecommons.org/publicdomain/zero/1.0/
      +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:
       
      -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.
      +The above copyright notice and this permission notice shall be included in
      +all copies or substantial portions of the Software.
      +
      +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
      +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
      +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
      +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
      +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
      +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
      +THE SOFTWARE.
       
               
      @@ -7535,60 +6501,97 @@

      NOTICES AND INFORMATION

    • - lodash.defaults 4.2.0 - MIT + is-ssh 1.3.1 - MIT -

      https://lodash.com/

      -
      • Copyright jQuery Foundation and other contributors <https://jquery.org/>
      • -
      • Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
      • -
      • copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
      +

      https://github.com/IonicaBizau/node-is-ssh

      +
      • (c) Ionica Bizau
      • +
      • Copyright (c) 2015-19 Ionica Bizau <bizauionica@gmail.com> (http://ionicabizau.net)
      -        Copyright jQuery Foundation and other contributors <https://jquery.org/>
      +        The MIT License (MIT)
       
      -Based on Underscore.js, copyright Jeremy Ashkenas,
      -DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
      +Copyright (c) 2015-19 Ionică Bizău <bizauionica@gmail.com> (http://ionicabizau.net)
       
      -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
      +Permission is hereby granted, free of charge, to any person obtaining a copy
      +of this software and associated documentation files (the "Software"), to deal
      +in the Software without restriction, including without limitation the rights
      +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
      +copies of the Software, and to permit persons to whom the Software is
      +furnished to do so, subject to the following conditions:
       
      -The following license applies to all parts of this software except as
      -documented below:
      +The above copyright notice and this permission notice shall be included in all
      +copies or substantial portions of the Software.
       
      -====
      +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
      +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
      +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
      +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
      +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
      +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
      +SOFTWARE.
       
      -Permission is hereby granted, free of charge, to any person obtaining
      -a copy of this software and associated documentation files (the
      -"Software"), to deal in the Software without restriction, including
      -without limitation the rights to use, copy, modify, merge, publish,
      -distribute, sublicense, and/or sell copies of the Software, and to
      -permit persons to whom the Software is furnished to do so, subject to
      -the following conditions:
      +        
      +
      +
    • +
    • +
      + + is-typedarray 1.0.0 - MIT + +

      https://github.com/hughsk/is-typedarray

      + +
      +        This software is released under the MIT license:
       
      -The above copyright notice and this permission notice shall be
      -included in all copies or substantial portions of the Software.
      +Permission is hereby granted, free of charge, to any person obtaining a copy of
      +this software and associated documentation files (the "Software"), to deal in
      +the Software without restriction, including without limitation the rights to
      +use, copy, modify, merge, publish, distribute, sublicense, and/or 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.
      +The above copyright notice and this permission notice shall be included in all
      +copies or substantial portions of the Software.
       
      -====
      +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
      +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
      +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
      +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
      +IN AN ACTION 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.
      +        
      +
      +
    • +
    • +
      + + is-windows 1.0.2 - MIT + +

      https://github.com/jonschlinkert/is-windows

      +
      • Copyright (c) 2015-2018, Jon Schlinkert.
      • +
      • Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert).
      +
      +        The MIT License (MIT)
       
      -CC0: http://creativecommons.org/publicdomain/zero/1.0/
      +Copyright (c) 2015-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:
       
      -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.
      +The above copyright notice and this permission notice shall be included in
      +all copies or substantial portions of the Software.
      +
      +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
      +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
      +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
      +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
      +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
      +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
      +THE SOFTWARE.
       
               
      @@ -7596,60 +6599,48 @@

      NOTICES AND INFORMATION

    • - lodash.difference 4.5.0 - MIT + is-wsl 2.2.0 - MIT -

      https://lodash.com/

      -
      • Copyright jQuery Foundation and other contributors <https://jquery.org/>
      • -
      • Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
      • -
      • copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
      +

      https://github.com/sindresorhus/is-wsl#readme

      +
      • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
      -        Copyright jQuery Foundation and other contributors <https://jquery.org/>
      -
      -Based on Underscore.js, copyright Jeremy Ashkenas,
      -DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
      -
      -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:
      +        MIT License
       
      -====
      +Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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:
      +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
       
      -The above copyright notice and this permission notice shall be
      -included in all copies or substantial portions of the Software.
      +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
       
      -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
      -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
      -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
      -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
      -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
      -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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
       
      -====
      +        
      +
      +
    • +
    • +
      + + jsonfile 4.0.0 - MIT + +

      https://github.com/jprichardson/node-jsonfile#readme

      +
      • Copyright 2012-2016, JP Richardson <jprichardson@gmail.com>
      • +
      • Copyright (c) 2012-2015, JP Richardson <jprichardson@gmail.com>
      +
      +        (The MIT License)
       
      -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.
      +Copyright (c) 2012-2015, JP Richardson <jprichardson@gmail.com>
       
      -CC0: http://creativecommons.org/publicdomain/zero/1.0/
      +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
      +(the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,
      + merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
      + furnished to do so, subject to the following conditions:
       
      -====
      +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
       
      -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.
      +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
      +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
      +OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
      + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
       
               
      @@ -7657,24 +6648,159 @@

      NOTICES AND INFORMATION

    • - lodash.flatten 4.4.0 - MIT + kind-of 6.0.3 - MIT -

      https://lodash.com/

      -
      • Copyright jQuery Foundation and other contributors <https://jquery.org/>
      • -
      • Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
      • -
      • copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
      +

      https://github.com/jonschlinkert/kind-of

      +
      • Copyright (c) 2014-2017, Jon Schlinkert.
      -        Copyright jQuery Foundation and other contributors <https://jquery.org/>
      -
      -Based on Underscore.js, copyright Jeremy Ashkenas,
      -DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
      +        The MIT License (MIT)
       
      -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
      +Copyright (c) 2014-2017, Jon Schlinkert.
       
      -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.
      +
      +        
      +
      +
    • +
    • +
      + + kind-of 3.2.2 - MIT + +

      https://github.com/jonschlinkert/kind-of

      +
      • Copyright (c) 2014-2017, Jon Schlinkert
      • +
      • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
      +
      +        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.
      +
      +        
      +
      +
    • +
    • +
      + + kind-of 5.1.0 - MIT + +

      https://github.com/jonschlinkert/kind-of

      +
      • Copyright (c) 2014-2017, Jon Schlinkert.
      • +
      • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
      +
      +        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.
      +
      +        
      +
      +
    • +
    • +
      + + kind-of 4.0.0 - MIT + +

      https://github.com/jonschlinkert/kind-of

      +
      • Copyright (c) 2014-2017, Jon Schlinkert
      • +
      • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
      +
      +        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.
      +
      +        
      +
      +
    • +
    • +
      + + lodash 4.17.20 - MIT + +

      https://lodash.com/

      +
      • Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
      • +
      • Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
      • +
      • copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
      +
      +        Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
      +
      +Based on Underscore.js, copyright Jeremy Ashkenas,
      +DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
      +
      +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:
       
       ====
       
      @@ -7718,7 +6844,7 @@ 

      NOTICES AND INFORMATION

    • - lodash.isplainobject 4.0.6 - MIT + lodash.difference 4.5.0 - MIT

      https://lodash.com/

      • Copyright jQuery Foundation and other contributors <https://jquery.org/>
      • @@ -7860,16 +6986,16 @@

        NOTICES AND INFORMATION

      • - mime-db 1.44.0 - MIT + map-cache 0.2.2 - MIT -

        https://github.com/jshttp/mime-db#readme

        -
        • Copyright (c) 2014 Jonathan Ong
        • -
        • Copyright (c) 2014 Jonathan Ong me@jongleberry.com
        +

        https://github.com/jonschlinkert/map-cache

        +
        • Copyright (c) 2015, Jon Schlinkert.
        • +
        • Copyright (c) 2015-2016, Jon Schlinkert.
        • +
        • Copyright (c) 2016, Jon Schlinkert (https://github.com/jonschlinkert).
        -        
        -The MIT License (MIT)
        +        The MIT License (MIT)
         
        -Copyright (c) 2014 Jonathan Ong me@jongleberry.com
        +Copyright (c) 2015-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
        @@ -7895,37 +7021,33 @@ 

        NOTICES AND INFORMATION

      • - mime-types 2.1.27 - MIT + map-visit 1.0.0 - MIT -

        https://github.com/jshttp/mime-types#readme

        -
        • Copyright (c) 2014 Jonathan Ong
        • -
        • Copyright (c) 2015 Douglas Christopher Wilson
        • -
        • Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
        • -
        • Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
        +

        https://github.com/jonschlinkert/map-visit

        +
        • Copyright (c) 2015-2017, Jon Schlinkert
        • +
        • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
        -        (The MIT License)
        +        The MIT License (MIT)
         
        -Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
        -Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
        +Copyright (c) 2015-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:
        +Permission is hereby granted, free of charge, to any person obtaining a copy
        +of this software and associated documentation files (the "Software"), to deal
        +in the Software without restriction, including without limitation the rights
        +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        +copies of the Software, and to permit persons to whom the Software is
        +furnished to do so, subject to the following conditions:
         
        -The above copyright notice and this permission notice shall be
        -included in all copies or substantial portions of the Software.
        +The above copyright notice and this permission notice shall be included in
        +all copies or substantial portions of the Software.
         
        -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
        -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
        -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
        -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
        -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
        +THE SOFTWARE.
         
                 
        @@ -7933,29 +7055,32 @@

        NOTICES AND INFORMATION

      • - minimist 1.2.5 - MIT + merge2 1.4.1 - MIT -

        https://github.com/substack/minimist

        +

        https://github.com/teambition/merge2

        -        This software is released under the MIT license:
        +        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:
        +Copyright (c) 2014-2020 Teambition
        +
        +Permission is hereby granted, free of charge, to any person obtaining a copy
        +of this software and associated documentation files (the "Software"), to deal
        +in the Software without restriction, including without limitation the rights
        +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        +copies of the Software, and to permit persons to whom the Software is
        +furnished to do so, subject to the following conditions:
         
         The above copyright notice and this permission notice shall be included in all
         copies or substantial portions of the Software.
         
         THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
        -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
        -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
        -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
        -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
        +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        +SOFTWARE.
         
                 
        @@ -7963,14 +7088,15 @@

        NOTICES AND INFORMATION

      • - mkdirp 0.5.5 - MIT + micromatch 3.1.10 - MIT -

        https://github.com/substack/node-mkdirp#readme

        -
        • Copyright 2010 James Halliday (mail@substack.net)
        +

        https://github.com/micromatch/micromatch

        +
        • Copyright (c) 2014-2018, Jon Schlinkert.
        • +
        • Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert).
        -        Copyright 2010 James Halliday (mail@substack.net)
        +        The MIT License (MIT)
         
        -This project is free software released under the MIT/X11 license:
        +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
        @@ -7996,48 +7122,15 @@ 

        NOTICES AND INFORMATION

      • - moment 2.27.0 - MIT - -

        https://momentjs.com/

        -
        • Copyright (c) JS Foundation and other contributors
        -
        -        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.
        -
        -        
        -
        -
      • -
      • -
        - - ms 2.0.0 - MIT + micromatch 4.0.2 - MIT -

        https://github.com/zeit/ms#readme

        -
        • Copyright (c) 2016 Zeit, Inc.
        +

        https://github.com/micromatch/micromatch

        +
        • Copyright (c) 2014-present, Jon Schlinkert.
        • +
        • Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert).
                 The MIT License (MIT)
         
        -Copyright (c) 2016 Zeit, Inc.
        +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
        @@ -8046,16 +7139,16 @@ 

        NOTICES AND INFORMATION

        copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
        @@ -8063,14 +7156,16 @@

        NOTICES AND INFORMATION

      • - ms 2.1.2 - MIT + mime-db 1.44.0 - MIT -

        https://github.com/zeit/ms#readme

        -
        • Copyright (c) 2016 Zeit, Inc.
        +

        https://github.com/jshttp/mime-db#readme

        +
        • Copyright (c) 2014 Jonathan Ong
        • +
        • Copyright (c) 2014 Jonathan Ong me@jongleberry.com
        -        The MIT License (MIT)
        +        
        +The MIT License (MIT)
         
        -Copyright (c) 2016 Zeit, Inc.
        +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
        @@ -8079,16 +7174,16 @@ 

        NOTICES AND INFORMATION

        copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
        @@ -8096,32 +7191,37 @@

        NOTICES AND INFORMATION

      • - next-tick 1.0.0 - MIT + mime-types 2.1.27 - MIT -

        https://github.com/medikoo/next-tick#readme

        -
        • Copyright (c) 2012-2016 Mariusz Nowak
        +

        https://github.com/jshttp/mime-types#readme

        +
        • Copyright (c) 2014 Jonathan Ong
        • +
        • Copyright (c) 2015 Douglas Christopher Wilson
        • +
        • Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
        • +
        • Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
        -        The MIT License
        +        (The MIT License)
         
        -Copyright (C) 2012-2016 Mariusz Nowak 
        +Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
        +Copyright (c) 2015 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:
        +Permission is hereby granted, free of charge, to any person obtaining
        +a copy of this software and associated documentation files (the
        +'Software'), to deal in the Software without restriction, including
        +without limitation the rights to use, copy, modify, merge, publish,
        +distribute, sublicense, and/or sell copies of the Software, and to
        +permit persons to whom the Software is furnished to do so, subject to
        +the following conditions:
         
        -The above copyright notice and this permission notice shall be included in
        -all copies or substantial portions of the Software.
        +The above copyright notice and this permission notice shall be
        +included in all copies or substantial portions of the Software.
         
        -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        -LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
        +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
        +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
        +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
        +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
        +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
        +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
         
                 
        @@ -8129,33 +7229,29 @@

        NOTICES AND INFORMATION

      • - node-fetch 2.6.1 - MIT + minimist 1.2.5 - MIT -

        https://github.com/bitinn/node-fetch

        -
        • Copyright (c) 2016 David Frank
        +

        https://github.com/substack/minimist

        +
        -        The MIT License (MIT)
        -
        -Copyright (c) 2016 David Frank
        +        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:
        +Permission is hereby granted, free of charge, to any person obtaining a copy of
        +this software and associated documentation files (the "Software"), to deal in
        +the Software without restriction, including without limitation the rights to
        +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
        +the Software, and to permit persons to whom the Software is furnished to do so,
        +subject to the following conditions:
         
         The above copyright notice and this permission notice shall be included in all
         copies or substantial portions of the Software.
         
         THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        -SOFTWARE.
        -
        +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
        +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
        +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
        +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
        +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
         
                 
        @@ -8163,14 +7259,15 @@

        NOTICES AND INFORMATION

      • - node-gyp-build 3.7.0 - MIT + mixin-deep 1.3.2 - MIT -

        https://github.com/mafintosh/node-gyp-build

        -
        • Copyright (c) 2017 Mathias Buus
        +

        https://github.com/jonschlinkert/mixin-deep

        +
        • Copyright (c) 2014-2015, 2017, Jon Schlinkert.
        • +
        • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
                 The MIT License (MIT)
         
        -Copyright (c) 2017 Mathias Buus
        +Copyright (c) 2014-2015, 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
        @@ -8196,15 +7293,14 @@ 

        NOTICES AND INFORMATION

      • - normalize-path 3.0.0 - MIT + mkdirp 0.5.5 - MIT -

        https://github.com/jonschlinkert/normalize-path

        -
        • Copyright (c) 2014-2018, Jon Schlinkert.
        • -
        • Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert).
        +

        https://github.com/substack/node-mkdirp#readme

        +
        • Copyright 2010 James Halliday (mail@substack.net)
        -        The MIT License (MIT)
        +        Copyright 2010 James Halliday (mail@substack.net)
         
        -Copyright (c) 2014-2018, Jon Schlinkert.
        +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
        @@ -8230,21 +7326,33 @@ 

        NOTICES AND INFORMATION

      • - normalize-url 3.3.0 - MIT + moment 2.27.0 - MIT -

        https://github.com/sindresorhus/normalize-url#readme

        -
        • (c) Sindre Sorhus (https://sindresorhus.com)
        • -
        • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
        +

        https://momentjs.com/

        +
        • Copyright (c) JS Foundation and other contributors
        -        MIT License
        -
        -Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
        +        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:
        +Permission is hereby granted, free of charge, to any person
        +obtaining a copy of this software and associated documentation
        +files (the "Software"), to deal in the Software without
        +restriction, including without limitation the rights to use,
        +copy, modify, merge, publish, distribute, sublicense, and/or sell
        +copies of the Software, and to permit persons to whom the
        +Software is furnished to do so, subject to the following
        +conditions:
         
        -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
        +The above copyright notice and this permission notice shall be
        +included in all copies or substantial portions of the Software.
         
        -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
        +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
        +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
        +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
        +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
        +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
        +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
        +OTHER DEALINGS IN THE SOFTWARE.
         
                 
        @@ -8252,25 +7360,32 @@

        NOTICES AND INFORMATION

      • - opn 6.0.0 - MIT + ms 2.1.2 - MIT -

        https://github.com/sindresorhus/open#readme

        -
        • (c) Sindre Sorhus (https://sindresorhus.com)
        • -
        • Copyright 2006, Kevin Krammer <kevin.krammer@gmx.at>
        • -
        • Copyright 2006, Jeremy White <jwhite@codeweavers.com>
        • -
        • Copyright 2009-2010, Fathi Boudra <fabo@freedesktop.org>
        • -
        • Copyright 2009-2010, Rex Dieter <rdieter@fedoraproject.org>
        • -
        • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
        +

        https://github.com/zeit/ms#readme

        +
        • Copyright (c) 2016 Zeit, Inc.
        -        MIT License
        +        The MIT License (MIT)
         
        -Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
        +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:
        +Permission is hereby granted, free of charge, to any person obtaining a copy
        +of this software and associated documentation files (the "Software"), to deal
        +in the Software without restriction, including without limitation the rights
        +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        +copies of the Software, and to permit persons to whom the Software is
        +furnished to do so, subject to the following conditions:
         
        -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
        +The above copyright notice and this permission notice shall be included in all
        +copies or substantial portions of the Software.
         
        -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        +SOFTWARE.
         
                 
        @@ -8278,15 +7393,14 @@

        NOTICES AND INFORMATION

      • - parse-path 4.0.1 - MIT + ms 2.0.0 - MIT -

        https://github.com/IonicaBizau/parse-path

        -
        • (c) Ionica Bizau
        • -
        • Copyright (c) 2015-19 Ionica Bizau <bizauionica@gmail.com> (https://ionicabizau.net)
        +

        https://github.com/zeit/ms#readme

        +
        • Copyright (c) 2016 Zeit, Inc.
                 The MIT License (MIT)
         
        -Copyright (c) 2015-19 Ionică Bizău <bizauionica@gmail.com> (https://ionicabizau.net)
        +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
        @@ -8312,15 +7426,15 @@ 

        NOTICES AND INFORMATION

      • - parse-url 5.0.1 - MIT + nanomatch 1.2.13 - MIT -

        https://github.com/IonicaBizau/parse-url

        -
        • (c) Ionica Bizau
        • -
        • Copyright (c) 2015-19 Ionica Bizau <bizauionica@gmail.com> (https://ionicabizau.net)
        +

        https://github.com/micromatch/nanomatch

        +
        • Copyright (c) 2016-2018, Jon Schlinkert.
        • +
        • Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert).
                 The MIT License (MIT)
         
        -Copyright (c) 2015-19 Ionică Bizău <bizauionica@gmail.com> (https://ionicabizau.net)
        +Copyright (c) 2016-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
        @@ -8329,16 +7443,16 @@ 

        NOTICES AND INFORMATION

        copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
        @@ -8346,15 +7460,14 @@

        NOTICES AND INFORMATION

      • - path-is-absolute 1.0.1 - MIT + next-tick 1.0.0 - MIT -

        https://github.com/sindresorhus/path-is-absolute#readme

        -
        • (c) Sindre Sorhus (https://sindresorhus.com)
        • -
        • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
        +

        https://github.com/medikoo/next-tick#readme

        +
        • Copyright (c) 2012-2016 Mariusz Nowak
        -        The MIT License (MIT)
        +        The MIT License
         
        -Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
        +Copyright (C) 2012-2016 Mariusz Nowak 
         
         Permission is hereby granted, free of charge, to any person obtaining a copy
         of this software and associated documentation files (the "Software"), to deal
        @@ -8380,62 +7493,76 @@ 

        NOTICES AND INFORMATION

      • - performance-now 2.1.0 - MIT + node-fetch 2.6.1 - MIT -

        https://github.com/braveg1rl/performance-now

        -
        • Copyright (c) 2013 Braveg1rl
        • -
        • Copyright (c) 2017 Braveg1rl
        +

        https://github.com/bitinn/node-fetch

        +
        • Copyright (c) 2016 David Frank
        -        Copyright (c) 2013 Braveg1rl
        +        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:
        +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.
         
        -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
         
        -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
                 
      • - portfinder 1.0.28 - MIT + node-gyp-build 4.2.3 - MIT -

        https://github.com/http-party/node-portfinder#readme

        -
        • (c) 2011, Charlie Robbins
        • -
        • Copyright (c) 2012 Charlie Robbins
        +

        https://github.com/prebuild/node-gyp-build

        +
        • Copyright (c) 2017 Mathias Buus
        -        node-portfinder
        +        The MIT License (MIT)
         
        -Copyright (c) 2012 Charlie Robbins
        +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:
        +Permission is hereby granted, free of charge, to any person obtaining a copy
        +of this software and associated documentation files (the "Software"), to deal
        +in the Software without restriction, including without limitation the rights
        +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        +copies of the Software, and to permit persons to whom the Software is
        +furnished to do so, subject to the following conditions:
         
        -The above copyright notice and this permission notice shall be
        -included in all copies or substantial portions of the Software.
        +The above copyright notice and this permission notice shall be included in
        +all copies or substantial portions of the Software.
        +
        +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        +LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
        -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
        -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
        -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
        -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
        -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
        -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
                 
      • - p-retry 3.0.1 - MIT + normalize-url 3.3.0 - MIT -

        https://github.com/sindresorhus/p-retry#readme

        +

        https://github.com/sindresorhus/normalize-url#readme

        • (c) Sindre Sorhus (https://sindresorhus.com)
        • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
        @@ -8455,20 +7582,34 @@ 

        NOTICES AND INFORMATION

      • - pretty-bytes 5.4.1 - MIT + object.pick 1.3.0 - MIT -

        https://github.com/sindresorhus/pretty-bytes#readme

        -
        • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
        +

        https://github.com/jonschlinkert/object.pick

        +
        • Copyright (c) 2014-2016, Jon Schlinkert.
        • +
        • Copyright (c) 2014-2015 Jon Schlinkert, contributors.
        • +
        • Copyright (c) 2016, Jon Schlinkert (https://github.com/jonschlinkert).
        -        MIT License
        +        The MIT License (MIT)
         
        -Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
        +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:
        +Permission is hereby granted, free of charge, to any person obtaining a copy
        +of this software and associated documentation files (the "Software"), to deal
        +in the Software without restriction, including without limitation the rights
        +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        +copies of the Software, and to permit persons to whom the Software is
        +furnished to do so, subject to the following conditions:
         
        -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
        +The above copyright notice and this permission notice shall be included in
        +all copies or substantial portions of the Software.
         
        -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
        +THE SOFTWARE.
         
                 
        @@ -8476,33 +7617,34 @@

        NOTICES AND INFORMATION

      • - process 0.11.10 - MIT + object-assign 4.1.1 - MIT -

        https://github.com/shtylman/node-process#readme

        -
        • Copyright (c) 2013 Roman Shtylman <shtylman@gmail.com>
        +

        https://github.com/sindresorhus/object-assign#readme

        +
        • (c) Sindre Sorhus
        • +
        • (c) Sindre Sorhus (https://sindresorhus.com)
        • +
        • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
        -        (The MIT License)
        +        The MIT License (MIT)
         
        -Copyright (c) 2013 Roman Shtylman <shtylman@gmail.com>
        +Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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:
        +Permission is hereby granted, free of charge, to any person obtaining a copy
        +of this software and associated documentation files (the "Software"), to deal
        +in the Software without restriction, including without limitation the rights
        +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        +copies of the Software, and to permit persons to whom the Software is
        +furnished to do so, subject to the following conditions:
         
        -The above copyright notice and this permission notice shall be
        -included in all copies or substantial portions of the Software.
        +The above copyright notice and this permission notice shall be included in
        +all copies or substantial portions of the Software.
         
        -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
        -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
        -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
        -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
        -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
        +THE SOFTWARE.
         
                 
        @@ -8510,12 +7652,14 @@

        NOTICES AND INFORMATION

      • - process-nextick-args 2.0.1 - MIT + object-copy 0.1.0 - MIT -

        https://github.com/calvinmetcalf/process-nextick-args

        -
        • Copyright (c) 2015 Calvin Metcalf
        +

        https://github.com/jonschlinkert/object-copy

        +
        • Copyright (c) 2016, Jon Schlinkert.
        -        # Copyright (c) 2015 Calvin Metcalf
        +        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
        @@ -8524,16 +7668,16 @@ 

        NOTICES AND INFORMATION

        copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -**THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE.** +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
        @@ -8541,15 +7685,15 @@

        NOTICES AND INFORMATION

      • - protocols 1.4.7 - MIT + object-visit 1.0.1 - MIT -

        https://github.com/IonicaBizau/protocols

        -
        • (c) Ionica Bizau
        • -
        • Copyright (c) 2015-19 Ionica Bizau <bizauionica@gmail.com> (https://ionicabizau.net)
        +

        https://github.com/jonschlinkert/object-visit

        +
        • Copyright (c) 2015, 2017, Jon Schlinkert.
        • +
        • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
                 The MIT License (MIT)
         
        -Copyright (c) 2015-19 Ionică Bizău <bizauionica@gmail.com> (https://ionicabizau.net)
        +Copyright (c) 2015, 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
        @@ -8558,16 +7702,16 @@ 

        NOTICES AND INFORMATION

        copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
        @@ -8575,15 +7719,18 @@

        NOTICES AND INFORMATION

      • - psl 1.8.0 - MIT + open 8.0.4 - MIT -

        https://github.com/lupomontero/psl#readme

        -
        • Copyright (c) 2017 Lupo Montero lupomontero@gmail.com
        • -
        • Copyright (c) 2017 Lupo Montero <lupomontero@gmail.com>
        +

        https://github.com/sindresorhus/open#readme

        +
        • Copyright 2006, Kevin Krammer <kevin.krammer@gmx.at>
        • +
        • Copyright 2006, Jeremy White <jwhite@codeweavers.com>
        • +
        • Copyright 2009-2010, Fathi Boudra <fabo@freedesktop.org>
        • +
        • Copyright 2009-2010, Rex Dieter <rdieter@fedoraproject.org>
        • +
        • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
        -        The MIT License (MIT)
        +        MIT License
         
        -Copyright (c) 2017 Lupo Montero lupomontero@gmail.com
        +Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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:
         
        @@ -8597,31 +7744,33 @@ 

        NOTICES AND INFORMATION

      • - punycode 2.1.1 - MIT + parse-path 4.0.1 - MIT -

        https://mths.be/punycode

        -
        • Copyright Mathias Bynens <https://mathiasbynens.be/>
        +

        https://github.com/IonicaBizau/parse-path

        +
        • (c) Ionica Bizau
        • +
        • Copyright (c) 2015-19 Ionica Bizau <bizauionica@gmail.com> (https://ionicabizau.net)
        -        Copyright Mathias Bynens <https://mathiasbynens.be/>
        +        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:
        +Copyright (c) 2015-19 Ionică Bizău <bizauionica@gmail.com> (https://ionicabizau.net)
         
        -The above copyright notice and this permission notice shall be
        -included in all copies or substantial portions of the Software.
        +Permission is hereby granted, free of charge, to any person obtaining a copy
        +of this software and associated documentation files (the "Software"), to deal
        +in the Software without restriction, including without limitation the rights
        +to use, copy, modify, merge, publish, distribute, sublicense, and/or 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.
        +The above copyright notice and this permission notice shall be included in all
        +copies or substantial portions of the Software.
        +
        +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        +SOFTWARE.
         
                 
        @@ -8629,45 +7778,55 @@

        NOTICES AND INFORMATION

      • - readable-stream 2.3.7 - MIT + parse-url 5.0.1 - MIT -

        https://github.com/nodejs/readable-stream#readme

        -
        • Copyright Joyent, Inc. and other Node contributors.
        +

        https://github.com/IonicaBizau/parse-url

        +
        • (c) Ionica Bizau
        • +
        • Copyright (c) 2015-19 Ionica Bizau <bizauionica@gmail.com> (https://ionicabizau.net)
        -        Node.js is licensed for use as follows:
        +        The MIT License (MIT)
         
        -"""
        -Copyright Node.js contributors. All rights reserved.
        +Copyright (c) 2015-19 Ionică Bizău <bizauionica@gmail.com> (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
        +of this software and associated documentation files (the "Software"), to deal
        +in the Software without restriction, including without limitation the rights
        +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        +copies of the Software, and to permit persons to whom the Software is
         furnished to do so, subject to the following conditions:
         
        -The above copyright notice and this permission notice shall be included in
        -all copies or substantial portions of the Software.
        +The above copyright notice and this permission notice shall be included in all
        +copies or substantial portions of the Software.
         
         THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
        -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
        -IN THE SOFTWARE.
        -"""
        +LIABILITY, WHETHER IN AN ACTION 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:
        +        
        +
        +
      • +
      • +
        + + pascalcase 0.1.1 - MIT + +

        https://github.com/jonschlinkert/pascalcase

        +
        • Copyright (c) 2015 Jon Schlinkert
        • +
        • Copyright (c) 2015, Jon Schlinkert.
        +
        +        The MIT License (MIT)
        +
        +Copyright (c) 2015, Jon Schlinkert.
         
        -"""
        -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
        +of this software and associated documentation files (the "Software"), to deal
        +in the Software without restriction, including without limitation the rights
        +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        +copies of the Software, and to permit persons to whom the Software is
         furnished to do so, subject to the following conditions:
         
         The above copyright notice and this permission notice shall be included in
        @@ -8677,10 +7836,9 @@ 

        NOTICES AND INFORMATION

        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. -""" +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
        @@ -8688,15 +7846,15 @@

        NOTICES AND INFORMATION

      • - readable-stream 3.6.0 - MIT + path-dirname 1.0.2 - MIT -

        https://github.com/nodejs/readable-stream#readme

        -
        • Copyright Joyent, Inc. and other Node contributors.
        +

        https://github.com/es128/path-dirname#readme

        +
        • Copyright (c) Elan Shanker and Node.js contributors.
        -        Node.js is licensed for use as follows:
        +        
        +The MIT License (MIT)
         
        -"""
        -Copyright Node.js contributors. All rights reserved.
        +Copyright (c) Elan Shanker and 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
        @@ -8715,18 +7873,28 @@ 

        NOTICES AND INFORMATION

        LIABILITY, WHETHER IN AN ACTION 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: +
        +
        +
      • +
      • +
        + + path-is-absolute 1.0.1 - MIT + +

        https://github.com/sindresorhus/path-is-absolute#readme

        +
        • (c) Sindre Sorhus (https://sindresorhus.com)
        • +
        • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
        +
        +        The MIT License (MIT)
         
        -"""
        -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
        +Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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
        @@ -8736,10 +7904,9 @@ 

        NOTICES AND INFORMATION

        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. -""" +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
        @@ -8747,32 +7914,21 @@

        NOTICES AND INFORMATION

      • - retry 0.12.0 - MIT + path-type 4.0.0 - MIT -

        https://github.com/tim-kos/node-retry

        -
        • Copyright (c) 2011 Tim Koschutzki (tim@debuggable.com) Felix Geisendorfer (felix@debuggable.com)
        +

        https://github.com/sindresorhus/path-type#readme

        +
        • (c) Sindre Sorhus (https://sindresorhus.com)
        • +
        • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
        -        Copyright (c) 2011:
        -Tim Koschützki (tim@debuggable.com)
        -Felix Geisendörfer (felix@debuggable.com)
        +        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:
        +Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
         
        - The above copyright notice and this permission notice shall be included in
        - all copies or substantial portions of the Software.
        +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 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.
        +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
        +
        +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
         
                 
        @@ -8780,15 +7936,15 @@

        NOTICES AND INFORMATION

      • - safe-buffer 5.1.2 - MIT + picomatch 2.2.2 - MIT -

        https://github.com/feross/safe-buffer

        -
        • Copyright (c) Feross Aboukhadijeh
        • -
        • Copyright (c) Feross Aboukhadijeh (http://feross.org)
        +

        https://github.com/micromatch/picomatch

        +
        • Copyright (c) 2017-present, Jon Schlinkert.
        • +
        • Copyright (c) 2017-present, Jon Schlinkert (https://github.com/jonschlinkert).
                 The MIT License (MIT)
         
        -Copyright (c) Feross Aboukhadijeh
        +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
        @@ -8814,15 +7970,15 @@ 

        NOTICES AND INFORMATION

      • - safe-buffer 5.2.0 - MIT + pify 2.3.0 - MIT -

        https://github.com/feross/safe-buffer

        -
        • Copyright (c) Feross Aboukhadijeh
        • -
        • Copyright (c) Feross Aboukhadijeh (http://feross.org)
        +

        https://github.com/sindresorhus/pify

        +
        • (c) Sindre Sorhus (http://sindresorhus.com)
        • +
        • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
                 The MIT License (MIT)
         
        -Copyright (c) Feross Aboukhadijeh
        +Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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
        @@ -8848,32 +8004,21 @@ 

        NOTICES AND INFORMATION

      • - safer-buffer 2.1.2 - MIT + pify 4.0.1 - MIT -

        https://github.com/ChALkeR/safer-buffer#readme

        -
        • Copyright (c) 2018 Nikita Skovoroda <chalkerx@gmail.com>
        +

        https://github.com/sindresorhus/pify#readme

        +
        • (c) Sindre Sorhus (https://sindresorhus.com)
        • +
        • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
                 MIT License
         
        -Copyright (c) 2018 Nikita Skovoroda <chalkerx@gmail.com>
        +Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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:
        +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
         
        -The above copyright notice and this permission notice shall be included in all
        -copies or substantial portions of the Software.
        +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
         
        -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        -LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
         
                 
        @@ -8881,53 +8026,21 @@

        NOTICES AND INFORMATION

      • - simple-git 1.132.0 - MIT + pinkie 2.0.4 - MIT -

        https://github.com/steveukx/git-js#readme

        -
        • Copyright (c) 2015 Steve King
        + +
        • (c) Vsevolod Strukchinsky (http://github.com/floatdrop)
        • +
        • Copyright (c) Vsevolod Strukchinsky <floatdrop@gmail.com>
                 The MIT License (MIT)
         
        -Copyright (c) 2015 Steve King
        -
        -Permission is hereby granted, free of charge, to any person obtaining a copy of
        -this software and associated documentation files (the "Software"), to deal in
        -the Software without restriction, including without limitation the rights to
        -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
        -the Software, and to permit persons to whom the Software is furnished to do so,
        -subject to the following conditions:
        -
        -The above copyright notice and this permission notice shall be included in all
        -copies or substantial portions of the Software.
        -
        -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
        -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
        -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
        -IN AN ACTION 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 (c) Vsevolod Strukchinsky <floatdrop@gmail.com> (github.com/floatdrop)
         
        -        
        -
        -
      • -
      • -
        - - sshpk 1.16.1 - MIT - -

        https://github.com/arekinath/node-sshpk#readme

        -
        • Copyright Joyent, Inc.
        • -
        • Copyright 2015 Joyent, Inc.
        • -
        • Copyright 2016 Joyent, Inc.
        • -
        • Copyright 2017 Joyent, Inc.
        • -
        • Copyright 2018 Joyent, Inc.
        -
        -        Copyright Joyent, Inc. 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
        +of this software and associated documentation files (the "Software"), to deal
        +in the Software without restriction, including without limitation the rights
        +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        +copies of the Software, and to permit persons to whom the Software is
         furnished to do so, subject to the following conditions:
         
         The above copyright notice and this permission notice shall be included in
        @@ -8937,9 +8050,9 @@ 

        NOTICES AND INFORMATION

        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
        @@ -8947,13 +8060,15 @@

        NOTICES AND INFORMATION

      • - stack-chain 1.3.7 - MIT + pinkie-promise 2.0.1 - MIT -

        https://github.com/AndreasMadsen/stack-chain#readme

        -
        • Copyright 2012 the V8 project
        • -
        • Copyright (c) 2012 Andreas Madsen
        +

        https://github.com/floatdrop/pinkie-promise

        +
        • (c) Vsevolod Strukchinsky (http://github.com/floatdrop)
        • +
        • Copyright (c) Vsevolod Strukchinsky <floatdrop@gmail.com>
        -        Copyright (c) 2012 Andreas Madsen
        +        The MIT License (MIT)
        +
        +Copyright (c) Vsevolod Strukchinsky <floatdrop@gmail.com> (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
        @@ -8972,80 +8087,56 @@ 

        NOTICES AND INFORMATION

        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +
      • - string_decoder 1.1.1 - MIT + portfinder 1.0.28 - MIT -

        https://github.com/nodejs/string_decoder

        -
        • Copyright Joyent, Inc. and other Node contributors.
        +

        https://github.com/http-party/node-portfinder#readme

        +
        • (c) 2011, Charlie Robbins
        • +
        • Copyright (c) 2012 Charlie Robbins
        -        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:
        +        node-portfinder
         
        -The above copyright notice and this permission notice shall be included in
        -all copies or substantial portions of the Software.
        +Copyright (c) 2012 Charlie Robbins
         
        -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
        -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
        -IN THE SOFTWARE.
        -"""
        +Permission is hereby granted, free of charge, to any person obtaining
        +a copy of this software and associated documentation files (the
        +"Software"), to deal in the Software without restriction, including
        +without limitation the rights to use, copy, modify, merge, publish,
        +distribute, sublicense, and/or sell copies of the Software, and to
        +permit persons to whom the Software is furnished to do so, subject to
        +the following conditions:
         
        +The above copyright notice and this permission notice shall be
        +included in all copies or substantial portions of the Software.
         
        +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
        +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
        +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
        +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
        +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
        +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
        +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
                 
      • - tar-stream 2.1.4 - MIT + posix-character-classes 0.1.1 - MIT -

        https://github.com/mafintosh/tar-stream

        -
        • Copyright (c) 2014 Mathias Buus
        +

        https://github.com/jonschlinkert/posix-character-classes

        +
        • Copyright (c) 2016-2017, Jon Schlinkert
        • +
        • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
                 The MIT License (MIT)
         
        -Copyright (c) 2014 Mathias Buus
        +Copyright (c) 2016-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
        @@ -9064,38 +8155,28 @@ 

        NOTICES AND INFORMATION

        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +
      • - tunnel 0.0.6 - MIT + p-retry 3.0.1 - MIT -

        https://github.com/koichik/node-tunnel/

        -
        • Copyright (c) 2012 Koichi Kobayashi
        +

        https://github.com/sindresorhus/p-retry#readme

        +
        • (c) Sindre Sorhus (https://sindresorhus.com)
        • +
        • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
        -        The MIT License (MIT)
        +        MIT License
         
        -Copyright (c) 2012 Koichi Kobayashi
        +Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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:
        +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
         
        -The above copyright notice and this permission notice shall be included in
        -all copies or substantial portions of the Software.
        +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
         
        -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        -LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
         
                 
        @@ -9103,68 +8184,20 @@

        NOTICES AND INFORMATION

      • - typedarray-to-buffer 3.1.5 - MIT + pretty-bytes 5.4.1 - MIT -

        http://feross.org/

        -
        • Copyright (c) Feross Aboukhadijeh
        • -
        • Copyright (c) Feross Aboukhadijeh (http://feross.org).
        +

        https://github.com/sindresorhus/pretty-bytes#readme

        +
        • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
        -        The MIT License (MIT)
        +        MIT License
         
        -Copyright (c) Feross Aboukhadijeh
        +Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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:
        +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
         
        -The above copyright notice and this permission notice shall be included in
        -all copies or substantial portions of the Software.
        +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
         
        -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
        -THE SOFTWARE.
        -
        -        
        -
        -
      • -
      • -
        - - underscore 1.11.0 - MIT - -

        https://underscorejs.org/

        - -
        -        Copyright (c) 2009-2020 Jeremy Ashkenas, DocumentCloud and Investigative
        -Reporters & Editors
        -
        -Permission is hereby granted, free of charge, to any person
        -obtaining a copy of this software and associated documentation
        -files (the "Software"), to deal in the Software without
        -restriction, including without limitation the rights to use,
        -copy, modify, merge, publish, distribute, sublicense, and/or sell
        -copies of the Software, and to permit persons to whom the
        -Software is furnished to do so, subject to the following
        -conditions:
        -
        -The above copyright notice and this permission notice shall be
        -included in all copies or substantial portions of the Software.
        -
        -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
        -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
        -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
        -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
        -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
        -WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
         
                 
        @@ -9172,31 +8205,33 @@

        NOTICES AND INFORMATION

      • - universalify 0.1.2 - MIT + process 0.11.10 - MIT -

        https://github.com/RyanZim/universalify#readme

        -
        • Copyright (c) 2017, Ryan Zimmerman <opensrc@ryanzim.com>
        +

        https://github.com/shtylman/node-process#readme

        +
        • Copyright (c) 2013 Roman Shtylman <shtylman@gmail.com>
                 (The MIT License)
         
        -Copyright (c) 2017, Ryan Zimmerman <opensrc@ryanzim.com>
        +Copyright (c) 2013 Roman Shtylman <shtylman@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:
        +Permission is hereby granted, free of charge, to any person obtaining
        +a copy of this software and associated documentation files (the
        +'Software'), to deal in the Software without restriction, including
        +without limitation the rights to use, copy, modify, merge, publish,
        +distribute, sublicense, and/or sell copies of the Software, and to
        +permit persons to whom the Software is furnished to do so, subject to
        +the following conditions:
         
        -The above copyright notice and this permission notice shall be included in all
        -copies or substantial portions of the Software.
        +The above copyright notice and this permission notice shall be
        +included in all copies or substantial portions of the Software.
         
        -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
        -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
        -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
        -IN AN ACTION 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 SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
        +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
        +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
        +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
        +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
        +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
        +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
         
                 
        @@ -9204,14 +8239,15 @@

        NOTICES AND INFORMATION

      • - utf-8-validate 5.0.2 - MIT + protocols 1.4.7 - MIT -

        https://github.com/websockets/utf-8-validate

        -
        • Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com> (http://2x.io)
        +

        https://github.com/IonicaBizau/protocols

        +
        • (c) Ionica Bizau
        • +
        • Copyright (c) 2015-19 Ionica Bizau <bizauionica@gmail.com> (https://ionicabizau.net)
                 The MIT License (MIT)
         
        -Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com> (http://2x.io)
        +Copyright (c) 2015-19 Ionică Bizău <bizauionica@gmail.com> (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
        @@ -9237,55 +8273,53 @@ 

        NOTICES AND INFORMATION

      • - util.inherits 1.0.3 - MIT + psl 1.8.0 - MIT -

        https://github.com/kaelzhang/node-util-inherits#readme

        - +

        https://github.com/lupomontero/psl#readme

        +
        • Copyright (c) 2017 Lupo Montero lupomontero@gmail.com
        • +
        • Copyright (c) 2017 Lupo Montero <lupomontero@gmail.com>
        -        MIT License
        +        The MIT License (MIT)
         
        -Copyright (c) <year> <copyright holders>
        +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.
        +
                 
      • - util-deprecate 1.0.2 - MIT + punycode 2.1.1 - MIT -

        https://github.com/TooTallNate/util-deprecate

        -
        • Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>
        +

        https://mths.be/punycode

        +
        • Copyright Mathias Bynens <https://mathiasbynens.be/>
        -        (The MIT License)
        -
        -Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>
        +        Copyright Mathias Bynens <https://mathiasbynens.be/>
         
        -Permission is hereby granted, free of charge, to any person
        -obtaining a copy of this software and associated documentation
        -files (the "Software"), to deal in the Software without
        -restriction, including without limitation the rights to use,
        -copy, modify, merge, publish, distribute, sublicense, and/or sell
        -copies of the Software, and to permit persons to whom the
        -Software is furnished to do so, subject to the following
        -conditions:
        +Permission is hereby granted, free of charge, to any person obtaining
        +a copy of this software and associated documentation files (the
        +"Software"), to deal in the Software without restriction, including
        +without limitation the rights to use, copy, modify, merge, publish,
        +distribute, sublicense, and/or sell copies of the Software, and to
        +permit persons to whom the Software is furnished to do so, subject to
        +the following conditions:
         
         The above copyright notice and this permission notice shall be
         included in all copies or substantial portions of the Software.
         
         THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
        -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
        -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
        -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
        -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
        -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
        -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
        -OTHER DEALINGS IN THE SOFTWARE.
        +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
        +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
        +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
        +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
        +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
        +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
         
                 
        @@ -9293,16 +8327,74 @@

        NOTICES AND INFORMATION

      • - uuid 3.4.0 - MIT + readable-stream 3.6.0 - MIT -

        https://github.com/uuidjs/uuid#readme

        -
        • Copyright 2011, Sebastian Tschan https://blueimp.net
        • -
        • Copyright (c) 2010-2016 Robert Kieffer and other contributors
        • -
        • Copyright (c) Paul Johnston 1999 - 2009 Other contributors Greg Holt, Andrew Kepert, Ydnar, Lostinet
        +

        https://github.com/nodejs/readable-stream#readme

        +
        • Copyright Joyent, Inc. and other Node contributors.
        +
        +        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.
        +"""
        +
        +        
        +
        +
      • +
      • +
        + + regex-not 1.0.2 - MIT + +

        https://github.com/jonschlinkert/regex-not

        +
        • Copyright (c) 2016, 2018, Jon Schlinkert.
        • +
        • Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert).
                 The MIT License (MIT)
         
        -Copyright (c) 2010-2016 Robert Kieffer and other contributors
        +Copyright (c) 2016, 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
        @@ -9328,21 +8420,33 @@ 

        NOTICES AND INFORMATION

      • - uuid 8.3.0 - MIT + repeat-element 1.1.3 - MIT -

        https://github.com/uuidjs/uuid#readme

        -
        • Copyright 2011, Sebastian Tschan https://blueimp.net
        • -
        • Copyright (c) Paul Johnston 1999 - 2009 Other contributors Greg Holt, Andrew Kepert, Ydnar, Lostinet
        +

        https://github.com/jonschlinkert/repeat-element

        +
        • Copyright (c) 2015-present, Jon Schlinkert.
        • +
        • Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert).
                 The MIT License (MIT)
         
        -Copyright (c) 2010-2020 Robert Kieffer and other contributors
        +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:
        +Permission is hereby granted, free of charge, to any person obtaining a copy
        +of this software and associated documentation files (the "Software"), to deal
        +in the Software without restriction, including without limitation the rights
        +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        +copies of the Software, and to permit persons to whom the Software is
        +furnished to do so, subject to the following conditions:
         
        -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
        +The above copyright notice and this permission notice shall be included in
        +all copies or substantial portions of the Software.
         
        -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
        +THE SOFTWARE.
         
                 
        @@ -9350,12 +8454,16 @@

        NOTICES AND INFORMATION

      • - verror 1.10.0 - MIT + repeat-string 1.6.1 - MIT -

        https://github.com/davepacheco/node-verror

        -
        • Copyright (c) 2016, Joyent, Inc.
        +

        https://github.com/jonschlinkert/repeat-string

        +
        • Copyright (c) 2014-2015, Jon Schlinkert.
        • +
        • Copyright (c) 2014-2016, Jon Schlinkert.
        • +
        • Copyright (c) 2016, Jon Schlinkert (http://github.com/jonschlinkert).
        -        Copyright (c) 2016, Joyent, Inc. All rights reserved.
        +        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
        @@ -9373,7 +8481,7 @@ 

        NOTICES AND INFORMATION

        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 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 SOFTWARE.
        @@ -9381,16 +8489,15 @@

        NOTICES AND INFORMATION

      • - vscode-extension-telemetry 0.1.6 - MIT + resolve-url 0.2.1 - MIT -

        https://github.com/Microsoft/vscode-extension-telemetry#readme

        -
        • Copyright (c) Microsoft Corporation.
        +

        https://github.com/lydell/resolve-url

        +
        • Copyright (c) 2013 Simon Lydell
        • +
        • Copyright 2014 Simon Lydell X11
        -        vscode-extension-telemetry
        -
        -The MIT License (MIT)
        +        The MIT License (MIT)
         
        -Copyright (c) Microsoft Corporation
        +Copyright (c) 2013 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
        @@ -9399,44 +8506,80 @@ 

        NOTICES AND INFORMATION

        copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +
      • - vscode-nls 4.1.2 - MIT + ret 0.1.15 - MIT -

        https://github.com/Microsoft/vscode-nls#readme

        -
        • Copyright (c) Microsoft Corporation.
        +

        https://github.com/fent/ret.js#readme

        +
        • Copyright (c) 2011 by Roly Fentanes
        -        The MIT License (MIT)
        +        Copyright (C) 2011 by Roly Fentanes
         
        -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:
         
        -All rights reserved. 
        +The above copyright notice and this permission notice shall be included in
        +all copies or substantial portions of the Software.
         
        -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation 
        -files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, 
        -modify, merge, publish, distribute, sublicense, and/or 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. 
         
        -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
        +        
        +
        +
      • +
      • +
        + + retry 0.12.0 - MIT + +

        https://github.com/tim-kos/node-retry

        +
        • Copyright (c) 2011 Tim Koschutzki (tim@debuggable.com) Felix Geisendorfer (felix@debuggable.com)
        +
        +        Copyright (c) 2011:
        +Tim Koschützki (tim@debuggable.com)
        +Felix Geisendörfer (felix@debuggable.com)
         
        -THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 
        -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 
        -BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT 
        -OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
        + Permission is hereby granted, free of charge, to any person obtaining a copy
        + of this software and associated documentation files (the "Software"), to deal
        + in the Software without restriction, including without limitation the rights
        + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        + copies of the Software, and to permit persons to whom the Software is
        + furnished to do so, subject to the following conditions:
        +
        + The above copyright notice and this permission notice shall be included in
        + all copies or substantial portions of the Software.
        +
        + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
        + THE SOFTWARE.
         
                 
        @@ -9444,18 +8587,88 @@

        NOTICES AND INFORMATION

      • - xml2js 0.4.23 - MIT + reusify 1.0.4 - MIT -

        https://github.com/Leonidas-from-XIV/node-xml2js

        -
        • Copyright 2010, 2011, 2012, 2013.
        +

        https://github.com/mcollina/reusify#readme

        +
        • Copyright (c) 2015 Matteo Collina
        -        Copyright 2010, 2011, 2012, 2013. All rights reserved.
        +        The MIT License (MIT)
        +
        +Copyright (c) 2015 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
        +of this software and associated documentation files (the "Software"), to deal
        +in the Software without restriction, including without limitation the rights
        +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        +copies of the Software, and to permit persons to whom the Software is
        +furnished to do so, subject to the following conditions:
        +
        +The above copyright notice and this permission notice shall be included in all
        +copies or substantial portions of the Software.
        +
        +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        +SOFTWARE.
        +
        +
        +        
        +
        +
      • +
      • +
        + + run-parallel 1.1.10 - MIT + +

        https://github.com/feross/run-parallel

        +
        • Copyright (c) Feross Aboukhadijeh
        • +
        • Copyright (c) Feross Aboukhadijeh (http://feross.org).
        +
        +        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.
        +
        +        
        +
        +
      • +
      • +
        + + safe-buffer 5.1.2 - MIT + +

        https://github.com/feross/safe-buffer

        +
        • Copyright (c) Feross Aboukhadijeh
        • +
        • Copyright (c) Feross Aboukhadijeh (http://feross.org)
        +
        +        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
        @@ -9465,9 +8678,9 @@ 

        NOTICES AND INFORMATION

        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
        @@ -9475,14 +8688,15 @@

        NOTICES AND INFORMATION

      • - xmlbuilder 11.0.1 - MIT + safe-buffer 5.2.0 - MIT -

        http://github.com/oozcitak/xmlbuilder-js

        -
        • Copyright (c) 2013 Ozgur Ozcitak
        +

        https://github.com/feross/safe-buffer

        +
        • Copyright (c) Feross Aboukhadijeh
        • +
        • Copyright (c) Feross Aboukhadijeh (http://feross.org)
                 The MIT License (MIT)
         
        -Copyright (c) 2013 Ozgur Ozcitak
        +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
        @@ -9508,34 +8722,46 @@ 

        NOTICES AND INFORMATION

      • - xpath.js 1.1.0 - MIT + safe-regex 1.1.0 - MIT -

        https://github.com/yaronn/xpath.js#readme

        +

        https://github.com/substack/safe-regex

        -        MIT License
        +        This software is released under the MIT license:
         
        -Copyright (c) <year> <copyright holders>
        +Permission is hereby granted, free of charge, to any person obtaining a copy of
        +this software and associated documentation files (the "Software"), to deal in
        +the Software without restriction, including without limitation the rights to
        +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
        +the Software, and to permit persons to whom the Software is furnished to do so,
        +subject to the following conditions:
         
        -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
        +The above copyright notice and this permission notice shall be included in all
        +copies or substantial portions of the Software.
         
        -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
        +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
        +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
        +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
        +IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
                 
      • - yaeti 0.0.6 - MIT + set-value 2.0.1 - MIT -

        https://github.com/ibc/yaeti

        -
        • Copyright (c) 2015 Inaki Baz Castillo, <ibc@aliax.net>
        +

        https://github.com/jonschlinkert/set-value

        +
        • Copyright (c) 2014-2017, Jon Schlinkert
        • +
        • Copyright (c) 2014-2015, 2017, Jon Schlinkert.
        • +
        • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
                 The MIT License (MIT)
         
        -Copyright (c) 2015 Iñaki Baz Castillo, <ibc@aliax.net>
        +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
        @@ -9561,102 +8787,1412 @@ 

        NOTICES AND INFORMATION

      • - zip-stream 2.1.3 - MIT + simple-git 1.132.0 - MIT -

        https://github.com/archiverjs/node-zip-stream

        -
        • Copyright (c) 2014 Chris Talkington, contributors.
        • -
        • copyright (c) 2014 Chris Talkington, contributors.
        +

        https://github.com/steveukx/git-js#readme

        +
        • Copyright (c) 2015 Steve King
        -        Copyright (c) 2014 Chris Talkington, contributors.
        +        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:
        +Copyright (c) 2015 Steve King
         
        -The above copyright notice and this permission notice shall be
        -included in all copies or substantial portions of the Software.
        +Permission is hereby granted, free of charge, to any person obtaining a copy of
        +this software and associated documentation files (the "Software"), to deal in
        +the Software without restriction, including without limitation the rights to
        +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
        +the Software, and to permit persons to whom the Software is furnished to do so,
        +subject to the following conditions:
        +
        +The above copyright notice and this permission notice shall be included in all
        +copies or substantial portions of the Software.
        +
        +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
        +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
        +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
        +IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
        -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
        -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
        -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
        -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
        -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
        -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
        -OTHER DEALINGS IN THE SOFTWARE.
                 
      • - zip-stream 3.0.1 - MIT + simple-git 2.37.0 - MIT -

        https://github.com/archiverjs/node-zip-stream

        - +

        https://github.com/steveukx/git-js#readme

        +
        • Copyright (c) 2015 Steve King
        -        Copyright (c) 2014 Chris Talkington, contributors.
        +        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:
        +Copyright (c) 2015 Steve King
         
        -The above copyright notice and this permission notice shall be
        -included in all copies or substantial portions of the Software.
        +Permission is hereby granted, free of charge, to any person obtaining a copy of
        +this software and associated documentation files (the "Software"), to deal in
        +the Software without restriction, including without limitation the rights to
        +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
        +the Software, and to permit persons to whom the Software is furnished to do so,
        +subject to the following conditions:
        +
        +The above copyright notice and this permission notice shall be included in all
        +copies or substantial portions of the Software.
        +
        +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
        +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
        +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
        +IN AN ACTION 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
        -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
        -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
        -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
        -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
        -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
        -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
        -OTHER DEALINGS IN THE SOFTWARE.
                 
      • - tweetnacl 0.14.5 - Unlicense + slash 3.0.0 - MIT -

        https://tweetnacl.js.org/

        - +

        https://github.com/sindresorhus/slash#readme

        +
        • (c) Sindre Sorhus (https://sindresorhus.com)
        • +
        • Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
        -        This is free and unencumbered software released into the public domain.
        +        MIT License
         
        -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.
        +Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
         
        -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.
        +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 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 BE LIABLE FOR ANY CLAIM, DAMAGES OR
        -OTHER LIABILITY, WHETHER IN AN ACTION 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 above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
         
        -For more information, please refer to <http://unlicense.org>
        +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
        +
        +        
        +
        +
      • +
      • +
        + + snapdragon 0.8.2 - MIT + +

        https://github.com/jonschlinkert/snapdragon

        +
        • Copyright (c) 2015-2016, Jon Schlinkert.
        • +
        • Copyright (c) 2012 TJ Holowaychuk <tj@vision-media.ca>
        • +
        • Copyright (c) 2016, Jon Schlinkert (https://github.com/jonschlinkert).
        +
        +        The MIT License (MIT)
        +
        +Copyright (c) 2015-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.
        +
        +        
        +
        +
      • +
      • +
        + + snapdragon-node 2.1.1 - MIT + +

        https://github.com/jonschlinkert/snapdragon-node

        +
        • Copyright (c) 2017, Jon Schlinkert
        • +
        • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
        +
        +        The MIT License (MIT)
        +
        +Copyright (c) 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.
        +
        +        
        +
        +
      • +
      • +
        + + snapdragon-util 3.0.1 - MIT + +

        https://github.com/jonschlinkert/snapdragon-util

        +
        • Copyright (c) 2017, Jon Schlinkert
        • +
        • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
        +
        +        The MIT License (MIT)
        +
        +Copyright (c) 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.
        +
        +        
        +
        +
      • +
      • +
        + + source-map-resolve 0.5.3 - MIT + +

        https://github.com/lydell/source-map-resolve#readme

        +
        • Copyright (c) 2019 ZHAO Jinxiang
        • +
        • Copyright (c) 2014, 2015, 2016, 2017, 2018, 2019 Simon Lydell
        +
        +        The MIT License (MIT)
        +
        +Copyright (c) 2014, 2015, 2016, 2017, 2018, 2019 Simon Lydell
        +Copyright (c) 2019 ZHAO Jinxiang
        +
        +Permission is hereby granted, free of charge, to any person obtaining a copy
        +of this software and associated documentation files (the "Software"), to deal
        +in the Software without restriction, including without limitation the rights
        +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        +copies of the Software, and to permit persons to whom the Software is
        +furnished to do so, subject to the following conditions:
        +
        +The above copyright notice and this permission notice shall be included in
        +all copies or substantial portions of the Software.
        +
        +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
        +THE SOFTWARE.
        +
        +        
        +
        +
      • +
      • +
        + + source-map-url 0.4.0 - MIT + +

        https://github.com/lydell/source-map-url#readme

        +
        • Copyright (c) 2014 Simon Lydell
        • +
        • Copyright 2014 Simon Lydell X11
        +
        +        The MIT License (MIT)
        +
        +Copyright (c) 2014 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.
        +
        +        
        +
        +
      • +
      • +
        + + split-string 3.1.0 - MIT + +

        https://github.com/jonschlinkert/split-string

        +
        • Copyright (c) 2015-2017, Jon Schlinkert.
        • +
        • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
        +
        +        The MIT License (MIT)
        +
        +Copyright (c) 2015-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.
        +
        +        
        +
        +
      • +
      • +
        + + stack-chain 1.3.7 - MIT + +

        https://github.com/AndreasMadsen/stack-chain#readme

        +
        • Copyright 2012 the V8 project
        • +
        • Copyright (c) 2012 Andreas Madsen
        +
        +        Copyright (c) 2012 Andreas Madsen
        +
        +Permission is hereby granted, free of charge, to any person obtaining a copy
        +of this software and associated documentation files (the "Software"), to deal
        +in the Software without restriction, including without limitation the rights
        +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        +copies of the Software, and to permit persons to whom the Software is
        +furnished to do so, subject to the following conditions:
        +
        +The above copyright notice and this permission notice shall be included in
        +all copies or substantial portions of the Software.
        +
        +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
        +THE SOFTWARE.
        +        
        +
        +
      • +
      • +
        + + static-extend 0.1.2 - MIT + +

        https://github.com/jonschlinkert/static-extend

        +
        • Copyright (c) 2016, Jon Schlinkert.
        +
        +        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.
        +
        +        
        +
        +
      • +
      • +
        + + string_decoder 1.1.1 - MIT + +

        https://github.com/nodejs/string_decoder

        +
        • Copyright Joyent, Inc. and other Node contributors.
        +
        +        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.
        +"""
        +
        +
        +        
        +
        +
      • +
      • +
        + + tas-client 0.1.21 - MIT + + + +
        +        MIT License
        +
        +Copyright (c) <year> <copyright holders>
        +
        +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
        +
        +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
        +
        +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
        +        
        +
        +
      • +
      • +
        + + to-object-path 0.3.0 - MIT + +

        https://github.com/jonschlinkert/to-object-path

        +
        • Copyright (c) 2015 Jon Schlinkert
        • +
        • Copyright (c) 2015, Jon Schlinkert.
        • +
        • Copyright (c) 2015-2016, Jon Schlinkert.
        +
        +        The MIT License (MIT)
        +
        +Copyright (c) 2015-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.
        +
        +        
        +
        +
      • +
      • +
        + + to-regex 3.0.2 - MIT + +

        https://github.com/jonschlinkert/to-regex

        +
        • Copyright (c) 2016-2018, Jon Schlinkert.
        • +
        • Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert).
        +
        +        The MIT License (MIT)
        +
        +Copyright (c) 2016-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.
        +
        +        
        +
        +
      • +
      • +
        + + to-regex-range 2.1.1 - MIT + +

        https://github.com/micromatch/to-regex-range

        +
        • Copyright (c) 2015-2017, Jon Schlinkert
        • +
        • Copyright (c) 2015, 2017, Jon Schlinkert.
        • +
        • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
        +
        +        The MIT License (MIT)
        +
        +Copyright (c) 2015-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.
        +
        +        
        +
        +
      • +
      • +
        + + to-regex-range 5.0.1 - MIT + +

        https://github.com/micromatch/to-regex-range

        +
        • Copyright (c) 2015-present, Jon Schlinkert.
        • +
        • Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert).
        +
        +        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.
        +
        +        
        +
        +
      • +
      • +
        + + tunnel 0.0.6 - MIT + +

        https://github.com/koichik/node-tunnel/

        +
        • Copyright (c) 2012 Koichi Kobayashi
        +
        +        The MIT License (MIT)
        +
        +Copyright (c) 2012 Koichi Kobayashi
        +
        +Permission is hereby granted, free of charge, to any person obtaining a copy
        +of this software and associated documentation files (the "Software"), to deal
        +in the Software without restriction, including without limitation the rights
        +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        +copies of the Software, and to permit persons to whom the Software is
        +furnished to do so, subject to the following conditions:
        +
        +The above copyright notice and this permission notice shall be included in
        +all copies or substantial portions of the Software.
        +
        +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
        +THE SOFTWARE.
        +
        +        
        +
        +
      • +
      • +
        + + typedarray-to-buffer 3.1.5 - MIT + +

        http://feross.org/

        +
        • Copyright (c) Feross Aboukhadijeh
        • +
        • Copyright (c) Feross Aboukhadijeh (http://feross.org).
        +
        +        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.
        +
        +        
        +
        +
      • +
      • +
        + + union-value 1.0.1 - MIT + +

        https://github.com/jonschlinkert/union-value

        +
        • Copyright (c) 2015-2017, Jon Schlinkert
        • +
        • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
        +
        +        The MIT License (MIT)
        +
        +Copyright (c) 2015-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.
        +
        +        
        +
        +
      • +
      • +
        + + universalify 0.1.2 - MIT + +

        https://github.com/RyanZim/universalify#readme

        +
        • Copyright (c) 2017, Ryan Zimmerman <opensrc@ryanzim.com>
        +
        +        (The MIT License)
        +
        +Copyright (c) 2017, Ryan Zimmerman <opensrc@ryanzim.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.
        +
        +        
        +
        +
      • +
      • +
        + + unset-value 1.0.0 - MIT + +

        https://github.com/jonschlinkert/unset-value

        +
        • Copyright (c) 2015, 2017, Jon Schlinkert.
        • +
        • Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert).
        +
        +        The MIT License (MIT)
        +
        +Copyright (c) 2015, 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.
        +
        +        
        +
        +
      • +
      • +
        + + urix 0.1.0 - MIT + +

        https://github.com/lydell/urix

        +
        • Copyright (c) 2013 Simon Lydell
        • +
        • Copyright 2014 Simon Lydell X11
        +
        +        The MIT License (MIT)
        +
        +Copyright (c) 2013 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.
        +
        +        
        +
        +
      • +
      • +
        + + use 3.1.1 - MIT + +

        https://github.com/jonschlinkert/use

        +
        • Copyright (c) 2015-2017, Jon Schlinkert.
        • +
        • Copyright (c) 2015-present, Jon Schlinkert.
        • +
        • Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert).
        +
        +        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.
        +
        +        
        +
        +
      • +
      • +
        + + utf-8-validate 5.0.3 - MIT + +

        https://github.com/websockets/utf-8-validate

        +
        • Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com> (http://2x.io)
        +
        +        The MIT License (MIT)
        +
        +Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com> (http://2x.io)
        +
        +Permission is hereby granted, free of charge, to any person obtaining a copy
        +of this software and associated documentation files (the "Software"), to deal
        +in the Software without restriction, including without limitation the rights
        +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        +copies of the Software, and to permit persons to whom the Software is
        +furnished to do so, subject to the following conditions:
        +
        +The above copyright notice and this permission notice shall be included in all
        +copies or substantial portions of the Software.
        +
        +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        +SOFTWARE.
        +
        +        
        +
        +
      • +
      • +
        + + util.inherits 1.0.3 - MIT + +

        https://github.com/kaelzhang/node-util-inherits#readme

        + +
        +        MIT License
        +
        +Copyright (c) <year> <copyright holders>
        +
        +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
        +
        +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
        +
        +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
        +        
        +
        +
      • +
      • +
        + + util-deprecate 1.0.2 - MIT + +

        https://github.com/TooTallNate/util-deprecate

        +
        • Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>
        +
        +        (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.
        +
        +        
        +
        +
      • +
      • +
        + + uuid 3.4.0 - MIT + +

        https://github.com/uuidjs/uuid#readme

        +
        • Copyright 2011, Sebastian Tschan https://blueimp.net
        • +
        • Copyright (c) 2010-2016 Robert Kieffer and other contributors
        • +
        • Copyright (c) Paul Johnston 1999 - 2009 Other contributors Greg Holt, Andrew Kepert, Ydnar, Lostinet
        +
        +        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.
        +
        +        
        +
        +
      • +
      • +
        + + uuid 8.3.1 - MIT + +

        https://github.com/uuidjs/uuid#readme

        +
        • Copyright 2011, Sebastian Tschan https://blueimp.net
        • +
        • Copyright (c) Paul Johnston 1999 - 2009 Other contributors Greg Holt, Andrew Kepert, Ydnar, Lostinet
        +
        +        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.
        +
        +        
        +
        +
      • +
      • +
        + + vscode-extension-telemetry 0.1.7 - MIT + +

        https://github.com/Microsoft/vscode-extension-telemetry#readme

        +
        • Copyright (c) Microsoft Corporation.
        +
        +        vscode-extension-telemetry
        +
        +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.
        +        
        +
        +
      • +
      • +
        + + vscode-nls 4.1.2 - MIT + +

        https://github.com/Microsoft/vscode-nls#readme

        +
        • Copyright (c) Microsoft Corporation.
        +
        +        The MIT License (MIT)
        +
        +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.
        +
        +        
        +
        +
      • +
      • +
        + + vscode-tas-client 0.1.22 - MIT + + + +
        +        MIT License
        +
        +Copyright (c) <year> <copyright holders>
        +
        +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
        +
        +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
        +
        +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
        +        
        +
        +
      • +
      • +
        + + xml2js 0.4.23 - MIT + +

        https://github.com/Leonidas-from-XIV/node-xml2js

        +
        • Copyright 2010, 2011, 2012, 2013.
        +
        +        Copyright 2010, 2011, 2012, 2013. 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.
        +
        +        
        +
        +
      • +
      • +
        + + xmlbuilder 11.0.1 - MIT + +

        http://github.com/oozcitak/xmlbuilder-js

        +
        • Copyright (c) 2013 Ozgur Ozcitak
        +
        +        The MIT License (MIT)
        +
        +Copyright (c) 2013 Ozgur Ozcitak
        +
        +Permission is hereby granted, free of charge, to any person obtaining a copy
        +of this software and associated documentation files (the "Software"), to deal
        +in the Software without restriction, including without limitation the rights
        +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        +copies of the Software, and to permit persons to whom the Software is
        +furnished to do so, subject to the following conditions:
        +
        +The above copyright notice and this permission notice shall be included in
        +all copies or substantial portions of the Software.
        +
        +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
        +THE SOFTWARE.
        +
        +        
        +
        +
      • +
      • +
        + + yaeti 0.0.6 - MIT + +

        https://github.com/ibc/yaeti

        +
        • Copyright (c) 2015 Inaki Baz Castillo, <ibc@aliax.net>
        +
        +        The MIT License (MIT)
        +
        +Copyright (c) 2015 Iñaki Baz Castillo, <ibc@aliax.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.
        +
        +        
        +
        +
      • +
      • +
        + + yazl 2.5.1 - MIT + +

        https://github.com/thejoshwolfe/yazl

        +
        • Copyright (c) 2014 Josh Wolfe
        +
        +        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.
        +
        +        
        +
        +
      • +
      • +
        + + atob 2.1.2 - MIT OR Apache-2.0 + +

        https://git.coolaj86.com/coolaj86/atob.js.git

        +
        • Copyright 2015 AJ ONeal
        • +
        • Copyright (c) 2015 AJ ONeal
        • +
        • copyright 2012-2018 AJ ONeal
        +
        +        At your option you may choose either of the following licenses:
        +
        +  * The MIT License (MIT)
        +  * The Apache License 2.0 (Apache-2.0)
        +
        +
        +The MIT License (MIT)
        +
        +Copyright (c) 2015 AJ ONeal
        +
        +Permission is hereby granted, free of charge, to any person obtaining a copy
        +of this software and associated documentation files (the "Software"), to deal
        +in the Software without restriction, including without limitation the rights
        +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        +copies of the Software, and to permit persons to whom the Software is
        +furnished to do so, subject to the following conditions:
        +
        +The above copyright notice and this permission notice shall be included in all
        +copies or substantial portions of the Software.
        +
        +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        +SOFTWARE.
        +
        +
        +                                 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 2015 AJ ONeal
        +
        +   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.
         
                 
        diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 000000000..f7b89984f --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,41 @@ + + +## Security + +Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/Microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/). + +If you believe you have found a security vulnerability in any Microsoft-owned repository that meets [Microsoft's definition of a security vulnerability](https://docs.microsoft.com/en-us/previous-versions/tn-archive/cc751383(v=technet.10)), please report it to us as described below. + +## Reporting Security Issues + +**Please do not report security vulnerabilities through public GitHub issues.** + +Instead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://msrc.microsoft.com/create-report). + +If you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://www.microsoft.com/en-us/msrc/pgp-key-msrc). + +You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://www.microsoft.com/msrc). + +Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue: + + * Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.) + * Full paths of source file(s) related to the manifestation of the issue + * The location of the affected source code (tag/branch/commit or direct URL) + * Any special configuration required to reproduce the issue + * Step-by-step instructions to reproduce the issue + * Proof-of-concept or exploit code (if possible) + * Impact of the issue, including how an attacker might exploit the issue + +This information will help us triage your report more quickly. + +If you are reporting for a bug bounty, more complete reports can contribute to a higher bounty award. Please visit our [Microsoft Bug Bounty Program](https://microsoft.com/msrc/bounty) page for more details about our active programs. + +## Preferred Languages + +We prefer all communications to be in English. + +## Policy + +Microsoft follows the principle of [Coordinated Vulnerability Disclosure](https://www.microsoft.com/en-us/msrc/cvd). + + \ No newline at end of file diff --git a/extension.bundle.ts b/extension.bundle.ts index 76e7c8dc3..6b8bc17cb 100644 --- a/extension.bundle.ts +++ b/extension.bundle.ts @@ -15,8 +15,10 @@ // The tests should import '../extension.bundle'. At design-time they live in tests/ and so will pick up this file (extension.bundle.ts). // At runtime the tests live in dist/tests and will therefore pick up the main webpack bundle at dist/extension.bundle.js. export * from 'vscode-azureextensionui'; +export { getSelection } from './src/commands/openYAMLConfigFile'; // Export activate/deactivate for main.js export { activateInternal, deactivateInternal } from './src/extension'; export * from './src/extensionVariables'; +export { BuildConfig } from './src/tree/localProject/ConfigGroupTreeItem'; // NOTE: The auto-fix action "source.organizeImports" does weird things with this file, but there doesn't seem to be a way to disable it on a per-file basis so we'll just let it happen diff --git a/main.js b/main.js index 01717236a..da19e1e86 100644 --- a/main.js +++ b/main.js @@ -16,10 +16,10 @@ let perfStats = { Object.defineProperty(exports, "__esModule", { value: true }); -const extension = require('./out/src/extension'); +const extension = require('./dist/extension.bundle'); async function activate(ctx) { - return await extension.activateInternal(ctx, perfStats, true /* ignoreBundle */); + return await extension.activateInternal(ctx, perfStats); } async function deactivate(ctx) { diff --git a/package-lock.json b/package-lock.json index 1758e0bb1..9709534e6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "vscode-azurestaticwebapps", - "version": "0.5.2-alpha", + "version": "0.6.1-alpha", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "0.5.2-alpha", + "version": "0.6.1-alpha", "license": "SEE LICENSE IN LICENSE.md", "dependencies": { "@azure/arm-appservice": "^6.0.0", diff --git a/package.json b/package.json index aea9c2156..f8ef7edf7 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-azurestaticwebapps", "displayName": "Azure Static Web Apps (Preview)", "description": "%staticWebApps.description%", - "version": "0.5.2-alpha", + "version": "0.6.1-alpha", "publisher": "ms-azuretools", "icon": "resources/azure-staticwebapps.png", "aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217", diff --git a/resources/Azure-Static-Apps-Environment.svg b/resources/Azure-Static-Apps-Environment.svg index 30683cce6..efd83f7af 100644 --- a/resources/Azure-Static-Apps-Environment.svg +++ b/resources/Azure-Static-Apps-Environment.svg @@ -1,17 +1,17 @@ - - - + + + - - - - + + + + - - + + - + \ No newline at end of file diff --git a/resources/azure-staticwebapps.png b/resources/azure-staticwebapps.png index 562004fd83cf22bb19ebe524abba95e657b31f3e..9e687cdef82c7266e7221724324c8f488e2765d7 100644 GIT binary patch literal 6736 zcmb7pXHe5Y_wFx+5_&HJh7QsZP!J(OK&l`h9qA$hDoAe$f=H7hVxt8?dPg9L^sa(5 zL3)*55_*u3T;BQLnfu|++&k}n*|Rg}%$D<Nc)6%#Xl({n-9CUA`nF^2l_|ec!^dn%+pW_?> z&==6e*7T)n<>Xp~!UNsw>O(No;}uigA-17g%g41}k8O&=XE>4Y%Hw*|l#&z*xxN-!_;SJz;dE(t%O$ zSLCa&DRPMZ$AW@Rf2DzV;0oMxH@Fqoic$g1?1fO;-Is-oWO^$l$98DXF<7_oc;cit zPUDt4TFZlW&b+_Ja1*tL_0u8WedvBVoS)DlK!6nbNMCmXq?@FXERws?x<@UOu~;+CwByMt5hPd;rytkG94b`StpGs?LJkiL{xlr!@h_$iPnm~h;dt^QsD_ITmT%N%?_*g<++(9$t?gYcCn6DKX_ z-}P=bxN-jaP5A=5oTTz7Xfx@fu0b69xEZ%C-mB>unAg;39i-Zq-SG}!X_61xdLC^R z(5+pPRO&&uSYaMLarh`YC7`RjvFcyw!Cs>EvN_)$Cil)PN!seYHWh&#e3$ax$hmKI z*qqkb4q@Eaw)zQV#E;v}NO#09%<}!KvR-nuboblFsl^mwuh7FA z{d&g3eoaz88{`8Ou5GK9mhz=S!|*>vtTI(B4pg2HmPKcG_-PEp7D}EDj`I?M1#ewK zE5^-bMjTTS@VBDD)E5tl5Y`JiprU1eyQLXStmkfwgadP=MZwR>ds{cCUN6EHHub(Y z$a>c79td~$E`4PGq6kNvkC+g?`;Yozh1z+d%uo8q!@_zRm59=>L%JJNPmT~sG7WF9D@ zaqQ*}=29I=n0%8OoqcdT`KTmW58vbH<5n^hFr%UquG;iOtO8R}!Rn`sy&qmYbnv>F zD;@ZKOpvVB>STZFvudTx=Zx4)txPft@2`7royVu8Mt29`6x-aY<%vyQI}T6$tyuL#;!vG$Df-Bq!6L8|`7j7seAZ#ubyCrs_) zULrGwd`Z5zM`OJgN(q~y)t2*U53U3>!3*+hEH3Nr=luWK*8Q4S=5P*LRR?nyYVx-{ zyV2^eJPfp+I`<7E=O%0lHYN~dHk}yz7f@!yuI7F=cbb-}rhZE>#nX8BOx5uaokLEHh`s-o|O4+!F3ddzASwLn}Rp{a5Ig!AccPqO{IKpEfJ4^R2CVR~i10{bx^ z@)7pD0oN_)w4)qWf7y~806BhJ8d|dVyD^He>T4Ta7qu91C= zt$(GwiLs2dq)FllNzPD{W}m;GmSkJe;@4&pezC^ATlO$}8ReuYw{R?jrnQ_u-R{p# z5*gokhFx|wSFrDsZBGamdHG6&|Lm#==#Xo}*JUm(O;(yFgy0pmS(wzL&T@3$QVU^~OY`l*yzOmzYD^}3HD3A5= z{rfLT44OjEUQ9=`VR%SfV$NAo*J6Kr?4%9RKo?SlKPTb^Cs|#( zHsZX5#;*vBb4R%v(|Ks}DGzgLeQPU027z_=8s*j1Ipmv`SYdD1eFWP1lFjZ2+@qX+ zk!co`CK~L_Mbx77Q4#(eG~4k@Owm*)be4Y;? znTpjDL;xxvIUyfmqTG?@6dqABq5rm~>aWyFv%5@^x8O^RSy$75RufL2Z}_bt3+U^(jU+g$!MjH1A$@p#GQ zYVTA|Kn|VDi5R>br^)_!!jz-q-3Y(Y?|68g(PBFk+1VISQ#n6))oixU(0@7ffW^C| z8p4xIi4QZ$gOv-ZO;8~b{O~d-SiGe3)K(;eDR?!epEGqL`u_Qkh z(_CM8(;mAVDYf2n=Uq459l@V{Mkf-er=&gpRTy;jyYW@*wJ<8xPB zY^{eDI9@Z`Esb0oMJs+c89uf2yZWNu2*RVO=}3X3>@zhXaq_N>Axz_TAdc)z>@497 zt_2d3WYur3f8SHK;pU**kXSozmzf~qKjE2Y+D(&pHpC=nsq{?ir~0!M%BgFM&xD#} zgcywHKD;RH^@XW?@sWvuRa}B6kXuwJWC~woUQxG`m*HrgwsQIS+Rx)Md8Jf}47ZX4 zOI8>HfK>Y5ZWs9PrE?*W`5M0uGyt5+(j3*=n_8^ikkwZCCj$cwlV@?WFY}swWc|*> z+b$S?%zy$?gki1L>9JgeFHRWhik?VrwC)7hDaXul(tFyc7dqfitkQNnS+5IgwB1N< zbTvM1FRo&y8pP&_=6D?rMp+BBvJusU^*TBeSbfagGD`wjUUZc&^hWeUqdvZ0Z6CcZ z(y657?JoveczrasuDH=^dIyIl?Qw{o{(|>kinc90iwPUNFb4INLGQVU<*Z15Sl8aY zew&e-sK$|hhVL8sELU5Cz?yYz8@vtdUwKRCK$=H9?5b*?Uta9iYgnOqfD@7Db>2kV zpHnHw4n&DPF|_dSuX&|xs7pugDWMe&VOD6{`Hs{tnKBtxJY2^JV<7X5CFn^+T1<`3 zUI0@5Tz+ebFT!W_4t`-H!<6m*=~?QX54N8wP7sb(XP50WUvR~|2t2vYb3mIL_X`)n z9-;9}^o;HOd3ZDWGliI^DxLe-f*pfnyYR{ix+QYIwIH9i5;s(DIH9Q$*Wg>wxY>?6 z?3FqL=&CM4qP5k2I-FQv!+)7W4>~H1yxnF=f-2N5h{IcR#Bjx!)Sjgj^_s~Tov|p4SeSEy zRt}MP4wvEW)<^QUdxED*)2(hQ8HM8C*IEe@6nc9EuNX~U8>MeI+Ex{E+i9H{sEeSR zxuNMI!vC`jIzi=_?M{tC-amD)y2LiMda4wWo$$_ z%+Zrbw%`buXIL+VdPLWMZ!8<3Vv2t9<8XN~f0N^2-DzckD#A-?g}jHC9nHTE>$)NG zcQqPq@nB-ZfiZ%TWuP6i?(1yhQI>lW5b(WEVPOx$B1!A1G|w<|LkPs^mhq+5M%YPg z0mxM$fEH}n2T3O$69i3RwYSJY*68(e=mbpMu9gY`xR!DgU2dJub4r4iy=9QHSVQAB z%|Dyeq@%Zyw!+!-%Wa1VX>Z9u3c75PWq#{NLrOIA#$T6i2G|sUKz`R9pJOg zL_`LzVMfF*#r(qN7Ifb@Lsd$Zb*Ey%4Ap5zLzQo*dj;h5>+cy@eI_;BXZ>f>Y zmg;u=3BE1$I$?nW@m=}dhrMOx|A5=QlD6md*gQ<#QuT?@n#nxUE%Bseim*I-P)>>M zQ}zs0a^Gy##ZO4E$yAwB+_f*#nbA&^j*oN9d{|N*Tp&vj&tZ(5nJU>;F`rICgeel$obTs+ndkpNvEkDYX!O?{ z{NCZOMx^Crx$(uz;5hS|+loV;^tb+boO;W(p}3OO#ma5ZfNKjv2}vP}=?hJgOR)ac=1Cl*y0JIOZ<$1~p$=TNpS1UkhCPcfO8;j&@~T4j)UjD=0Ka_v5mL!{ zcXR|~{Z4)gf!|+yimT`?>CnyM$w91onS&049zKO+4^%#%Sxat4MM$C@E&}ZH41?5Z z{QenPm+Sn`pOIH2OHzvmB&*2X3wLr5crv#9u}PO6B@eBj;$Kx<+#lZ!Y2a-;;S7)^ z6blnVr3l2=>0^@5i(Q;wvlWIdC+~;}N`k~;q{~O`GQf`RoppOyaA#p6Aun=T!+^Ew zazssQl6YOnL$$CcVozFTlJzN0;+wT^vGk>v5jR`wq#Q5UF1Pr9>~&447%+_5#Ju|^ zUVo^D{v1q~ROi=nBL?&|Uj1+aTi{slVsQ=%f-7fdf`qX;%XiObk|nD16>B82+N&9n zu|n(uH@|$P*|~I?!nV$sUwSxkFYbvp?lCUSB9CswyJ##?}3P7?b`xJeKSOEE)$oqt&ffnr$i zyp2d7MqAkZE3M4uM$P!MN3|lFg+LnyA*slimjlGIRH!Md-G>{uPkZ3e9L4}0YPkx` z)%H4`DSMzaX+k(>b+Z*`NS!FK6+rf+N9m^0M>?SU<1=WP)br3z$!6e|S9fSWcv0M3hdQ|}3KQ#tB)N7r+v+JDK zJL2av<`(AdW?T(BrL@U!--iR8>w4fR$>*P|EWm$^jwI&@%lOlj{A;B3VLoCU9ZAj+ z9sz!x2CXR&ci5L2jFcqH5ypn#UzU16hqYq*d^e}Fps36@;An#_2k*szoW6-^P#q6C z%AdxcFN(gM5%$yzYm3+H^M8*8BzSM~bd?Y##O=)f8gP8>U7Y*cV*ySmAS~XS zur#rmeHnjy%Zuo<_@nZl>{OB^%Et@Ai7am}gjl_Gh=aQ(j$6U{UYdhT-jQyMLrcRP z3=~)zRf&qVYXezzm_XMlc2!X46Wj*B#fqgz8FY!h7&;>Z^A#(x{`d2eWxs5sL-X~( z@x>^i00z`KbeG;eu~e_YN*ZRTaK(PF1--^IWn%h>^rMvyl?CmRk_7n5(xAW7$iW;9 z{}c%28VfGS&`mw?rEDe|1F(!vAVtnSRQ12H8!bQk7FkoG z@3<+$r=NradV`4 z?By*+#SbJkn|~DNYZusf9{-~ehs9wK_-n3FlNKdjal4OP)O6!5TlREJ9uY9)r;?9* zQeQ#Mdx_x=eB*pY*Ne1=wb1?5jBSqE4+esqJnNRGpGUeRP88$S)h-yhZOUTY`9}|Y zMXB8CJZ@j#{rnRp(FGBOu=@aXARn=aE04!onj5m&lr86s%Ia-mbwXlkS%*FC{3A3ryJkxZ3-=RvcDsS^p= zDtZtUin5gwyt+^Yrp{}Z0M%Vw^;_rj7d}B|oJx{8cs)A|rvITYl!BqMH2R%aBs^aV zgH8sGK>+b_Wj%we(h2#L!$!)*_K||?I++NKU5C~l?Y6m{Hq>&T4MLf=p5@eQpO@S$ zhFyHPS=8^vNd0{G@oZibw;>_TU`WW^ctJn)1eN2ydV)-UIA*pp;>j<;*_b!myS30UebnnGhfTlpWX7hJSDs z_$_)|^&@ISfcf^FQ_Rz)1$aDNBo%n?TAMB^nN>k%?+OZy@_`VtwB#9}HSZH{_lRGF zzLvkF(O5nAj9|Q<9h+igX0d0lQ}ov9%4EnFI@MuLEH5>iM!K!451HpdUsGR9^qX@l zxyj_cI0z%P#NTtomA3Cl<^lsshD_K(+eg4+HT-4mXDg`>+r1rEP_9W^yKv?Ee_k#P z-V(*8y((;Fj9^E;P_-V7f1^|$@Lz`MOLfjO--Gw+F`#4J% z&!0()WUJQdr*tKbHxyYpZ(W!GUF#Kn;ZZD!BX~Hi&bI zipib69cQ9$mKa+LtE>BD&_-do-oyW}bPVUIqqUh;T*1Qf<<=VbH&$`k&p*Gq5V$;yVkC+Ln`|=eMHfx1xK?y+mvU!M7flyVFn(vw3M0 z4SXn`eaT3{P**4Tdpy2`lEFlz=F$_oTdpp4%&~nvbXyR9!7Uex|NR-X3T{jX^iJ(Z zwb=Mv6&r^{_#$3-_CKLzj?QSBr|{c>2#W%O-(IgYGw6<}f0@?M5>2VL?1&$OA=dT z`|aNQ?S44VPTeYG>Q~J9^Mrws7SUM$x zz2VD4e)(k72PW-)CT(djL>@>DnTPZ}P?cx$LX-?Z>joAd)#T{kN#{k(ErT&kBJ^4OmB|h1-PQ3r z1Munx%kv57VPU`e#dSIOuFwB``g_ti*E({Df1V+nfd1rK+p8k(g5*6(^s{;Nl<@ zf+RzN zG42Ea+tf#H(2L-Pk@rgLtosBMjsgF<{$hT&jw6nc(~uM!s^yRnvQJV?V{ln%_Sl+ust?97l&8OWxmRCD23@z(L|D4+Y~#1TB@89+^tE9Z#s6R8W-2PcMA#$jD75-0)5CZ7xRIs;$Z`q3~;A(Fj z-MRTdL=Uy|hVQo8C=vXURiM{Ksk8&uL9$IVUu^{<8j=8FCR6g-xV|R93tqYp{WDg0 z&6kYW2BOxkne|A1P%0H7BOaL?A#Q*>{R7QN7)>vmbSZ^Xi1ByOfFB&R0pF%hjVPEW zwJ()RcDUPjuxgc7yl=r_mcQP<762L&0YDc^Ii@qsXR0HjXuq=S!v=$(AM32C?7a_<&R^3)r zx9)NO4v6^E#G66Ix#)Vf6VfuQQlOBy?*5$LwjD#5EK;&w2BZw zP_kd(F9`^U(1Q=;`?_vPZ*2WyrmaQ!O^tSC2)<`_z+iiR@}~Bo)akZ<-;imu>gM2v zr_Qdxfrnigc7h41k!b(5^V8P$e0U=0fv$Y4sW#CazTlR)-)S8A!k^9f87aimh3h8*4SbF7{AWQRKu1n92LxXP zMR~SL3-erUML|KDc&|FGu&GdtzTIJoUG>n}1LN22A7uH?Acrvu_KYvZ8n z4!QhA=HCy-Zru8adg6YjBSVLmHA+c2J>{xi-#%mIu3V-BcQo_7Wv8RZ#rrnl5z+jv z9xSxt-S{K;(Y|ktXGKAUY{%o^F*$kMAx-CbjQ_J$;JU1Dq{#j4gPXu5;#u)6k980et~<3PjzWR>*)1krg6F1 zi||umsfEqdriE`@#_#3&jfh3-GW0-Gf)E%BqcGrJ{Y>|uu_t#v`u;oZ!Sk{6etS&f zO+ph7?D1V2N(C(0Lk?BAX#0qFw#dqf?eVz2An>3*^_z}4iR>(^yKBh0(JVOsCupxw zIrZOgiSO4ME`8B?U$u6baHAtX4U%t^cK-4QTgyTLJB*r#r#Q6QM4HP9KauoH zta}#uik0-WLI zT%6y6t%?!itUpI+md%cev1`iE`t~?@>Wt-T{+8C03L_O7>$=tKjCE0XGewTq955W6 z>nz119WWh(X{QVot7^sMvs;YIIq|z9pcKTP6d;&a;j$D7TVt%ksFA10M`m+#u23JM z%x%JuRr`&W5OdzQV!jokMpJpHZ{JnrratLN*C+S(-1o!sd>CGad&QH;L?%N6dlx>} zx_l-}%Qaa!<5T-^E5`S6*e(3F1xPpgIVn7`HrD(8!B4diii%ZSGyE^6_&b;1ANzMU za?zj8Dv-CnWk-7w;T`UM50VonKMAsWoO8JfBVhRXJ832~70UboO?#O=3*}v9Wt0B6 zCOBs-5U{G9k~e*6aFsTxj?;R*!MJ_|&6*B{dlm_h)fzlaja9jDj8%{UeZY8_nj_Ftb)g?^<(;3@$}&Xk&ajLPF_e|C3;XM7W6%G@ zFK2Sp#NyXtOrTVy6Dz_MycA@-KUcE{oj=p2`cC=JJ=;M!EH6aFYlG;FLfczJN-x^h;{ZS32A5y!C6uOilVtb@6jsM(uDoC&ditt!K@$owTB5jObVwgOqlf#`*!QQXzme zM?y}VqGt;8u$7~Ka2LH)^FW))+v=k|V=CT9dAfBSgTxP#>b4fvbDkA>cG;8OTBQ}v zH9u~sI+i;>$?IjBn2_?_Y30dFH)~8t`;2alZ2Ij`xQF>vxa$&@f1Qm8Y=9J)^eJ)< zeM(?`c4cB@uKhybL@nkXJG`C8!hbSp``0;9pAVlO8o*w)hdHti#uy#k+vALc6SK7*BT=X;2FVG@?>l=fID)y zv9nOJy%ZwWY-sbi46>uqgfI4HdZgAW#nhPMa#ghTYzq{?*;q0~S0Wa$rj0r$%RL|a zCm(Xgv+ncnhx7Z^U|maw5Bd3e7&s5*fEj~mVVb`)A4a^}SRn6XsJRF%Mv0opop z#4Kx-KUnqZ$7d0_!|7r1A?1dz2IV*UPrYodb_t291xl7Bk7PtOZ1K5cjitH*7%Ev~ zX)T)P@!Z6K-%IsDQ0n9-Sj4&8GeL0Rx1!ket;6|)G4w_=Ss=iCNcDS)G_3NJNEZDB zXHs66f7%Y#t#=PZSL zrM;Y62019#JLF3lGI++J7%gRI*roVxpI53H%j*(Ci`?QxP+Xx{>=U{SYlTicMY;Fz zaL3~;RgsTk)1P*1Fld~U{9+ba+tz*}_lk|N3G3=5IP&fn13&js+#Q+hMq8&V6}wI- zk$tPS=Iu%~VM9R~DEIXJ4uw4!?N?9}8D8HUls#0Q9<^4*!i@r14)6!~^!lIDBatTq z_M#W>AIovr_a$9)^c8U4^Q+&sg+-P)#5R{8xMWd=)7P#y1peBEP2s<~;X7j39@cAy{esBOU1{Ivb2~24x zE<`!7aAX+`R+8fzwk-PSwR$*cEx&ysj*-!A2{2-@Ba6MYWip+8FPzYToQB19eRJ~f zl0(a)MW=zP0-AC@lulGVtFzojKa=y}Nj~a=l7{-*=L3Q>)KRnR>O>*#(oMhjpbC zEd6qNX4ghY2GL~IqtMRl2Lhj?q}+`(*QmUyuv(`FRf#4$>YrvaXUkead#l(vUDfHn zS#F!|Wx(}TKMe5m=FjsLTkxHm2wu56+`HmSE1UY}W(s{bBJ$4}Lc|bozWn2(6BJR< zXh|U(9q5HAIDWUEf26i?ox$CGCjNvk=9zsR)91|zhVG+3|E==%glw4jT>M;q7k9;%>jv~dJh37`k_huy%v^N%bA7N^DEuRc-g zV3jQF5D9SH+rjiV83YJI9)lX9AY2qjuwYREq~GEqJJ07kV{cK|~qO&%4oZ{DIU zY=dn?kLE}=?po|oG)J?-xXZLh|0rU|l0G4Yz@(-Tt)73IId(=hU5`*$>cLEuW=Rao z=VC6IO&6X*y6(;1Zx|3-+tUu%k@=|Uaf})JsCRvVl+V75xb`X1x>Ps+>b>`W7(++= zKpFrjM#xR;X8qIN>TRXsMT@&26w9npGPlia84x0XLLXOna#rpQL0>yTegZE>Cv>$8=QIAE zT4y$Ys^4M8el+nS*F$kK#h9aunw$RchGnDsAJsg81W;`!vrJ?#Dy+Gkoj zYLyo`r1IV?``rC7HKWP4wecG1pg0I!`FtcYHhL3y2Fg4yM=ExO4;&{*+{%sQ@`Bqa zI&oqQZ^~X9Y}QYHW!^**Q)FcB+?-ytjr6F`DtviF1dd}S?xh88Ch4(vmCLVfAwVZT&=ap5EY8{eCg4)6@O zM9XD~ZoKh}D*oYk3(rRwZ7UH+*c%{9jSHo9nY??;V*T?abno#P6D^mj7zHCxzY zcGrnB^DV#4phIv=6dt;dkDfe0jJ)Kfzw0az-B$6;;tAwJX~O$+uQ99=;XE?QghJ6x z^NH(rbZYW846-lmgGP^kzLBi;VyI56?C&X$m=yUG%v+9h*`CGKF8+CA`@ZzD%?^+{ zhve}Ih4wbr1R_;Tt2YX%=D@((NOsv1h%3Wdele4*3wHh2f4sowC?SP%vzd*(o7lLB zu2`4GV~ZAo1HUcXJx|G&;X;umoGjWLe;Zd8$bbBTDK%Da@hof^WS8fWdV4*}+_k~T z`WKC$;WwGnI5zE{u3(7b;me7#4S){7Mcu29_`L%hU}bH>izT!o`lZ=a#VhbDMwqyU z%EgW=RE*Gqf1T9LM3@n!&Hw$dgeS)NMqKSDz4ZGGBT|ps#(M8jIOe*qKu?q)az0+6 z13|p^x%9xxJxakFU?qo(M=}SM2Y!i=zx*s3Von4wIzm#Jj`vx8eQ@16xM^H|1>{5R zh2rh3@f7@c4LEDgUq`}|XvfPWqaAq5W*zIq6MstH$#;I*)zDjN)^7k2TXA2hm4hRI zLLS;=qapnpS>T#6`Mv@uf*0aQ#mmU(i~lakw{_=EYDD`kx!s;Fcos;2R8ke`UcFGd zL}p-H1U347hjn7O+wyt0ie!QF21i3C`0OMaw>ePh>;;Bd@xr-F5{|2fH##W39p*pB zr04U(RE2?RzF=<*wo&{2i*`g0*f@UL@5ANz4(R zP6_vue;PhHeVU`4kcR@`uxPr){;M#B+rqA}IKIxmqd#UBP3i`DaqY_td5Ct|oirK;!X}8SebE%u zd|6k@h16z)%mFO#6;moF5$@$6xnn)oVCC@{05=2dD@WkL9tg01wma*^1_L;1B)89H zt>L%}^o->5ySGwQkBk}}#C>7o2L;nu5`Z);_yC?1BkU!YJXRm_j)%2tL19;2&+6c; zDPvYm8qEQ(r$o(tBIBCmqO@~=z~O#vu{@EMuIoFq$tP4BZltjv6BV+GAy1ai;g-8E zFE1FIZFIojSP3Yjd;W#tM~DwhkKfGSr&EODiXwSl7EZXo{5wH)K7cK7^Ch8eqAYmt zf~}5f%8Vn@aHUN!X+dvMeI?bT3rY6Gh??+nlW@MGe+acy#x!kR{{sb1QXI5r)2#jrp1Sos zRj>IT(n*nv5_q#)!gVu7E^de@``ZT)n+3R3i`eQe;tB3~hZ-!_5Rm|qA<(1Bf?ZAr zdT6ww@Z-=XlmTX*2sCc^%B;`w_pjesLhzXj@sMdhMCCAxVY9g?j&{C94Gw3nC9mBT zkGm#GqrOH(O#Sq{xSnwfMU|f)*7kWA+^0CfI)IO!bPPw?OIA z-yk19vxY@d+)Ng(ZsB5ZeDa;Ulv>5FvvBbRH!D~d=NXNzmQqm# z28|#1;u7?4=c$gh{0&fY-$x!0AgRv#*2FpFZ!v9_rjQm%7u~y8RfxXi-u?j50g1zT zf*+23?t`OB(XXCyai2qf|M6bHAC1CXGA?Rg15Lax)R2nIJVd!S&KbLkUZI*f!Ih*B zZP>471)v&SB;!VE@ja8WLiC7MlP+pfl@`E7i;g7-=eA57&jAi0(2Y(|4ON5MF_WvA0PnFOmSG?s!qLy?H+|48 z(#+r-)L;jKB6NO}_d%w6Dfx?843Nkdi?G%K^uHs%i(e$&GBbg2KxcekIxUez0@dIx z_COaLeOcsgOAI$#5~<=}n8VnYCS>bI@cikW4`5XyJ_%Kqa7s2vBN^v@Gyd)O;DQV! z8qC*rZEYmMWNi?!Ef7G3kI$0Em}n*=@F<#%6|dv16n#K4Vb215nHc%taiJGN9M!&u z4KX)+cBF*6;-S%*Y@j!{i=%R597-2TYZ4XzDqLFM_>dd{QIX$C# zp`n1WthAuIzl>}wL_ppQ?%(c0h+o|7HmE|cMO;~Hfe*FqtQ`>*MEe>t#4LbA{uLI2 z4bm*o<_*)|XHaX{O)#cH4f>r-KuFk4mkyHIF9tn~12#*f0?f%06{KAX3pJ#@P2B-n z$rfVYq+LK_+I^Gf`2g33O@!pXR%qsuyOe)l&~s(c(Lwh+QCc<0@aYV&BXTv_L277@ z`(QmVPZ-gQ(iR*3%F;9|3`D({GPQ1QL{~d{wO`#;{5*tWzdiG8Rlw?wWb#YI3U{yt zFm5UtvZVP;hJ^*AzHGR>X`vRfNQ|8R**wxb-94>1>Vh^J zOpO|RjHn5&qVID0TpQ?xV-ehMOr;gDfRlwex(}~h1LzCU`VzOHXAihiN;N-9Z|pFg zERk3p)D)m62-cJfA7hNeHj?80h|ljz_?r$vgH8!=$c2`AWvWG0^PGMBJCMFIggcO% zPM!<<0P?h44bdh4A}#q*hQMex)#PZG1;}N0ZnUdze6gM$}B0; zdFw@n)4>l$8)e82Bt#_fJsGt#x?v#Zk;1u7!EG8Ro}ycA@PoRRm8Fw420hEG0C?cG$yC$DdoC&A=z71^wgc zZkn7w?9zGNEbv9C)-}ykRURg)y%`^gUr!BV` z;rUIlYP$P+iYrJZo`=9utbA8GgoCxqt%;V$oAv|g#q(Bjc-Om};N!3dno&@s-O-%$ zrqS6l#c7!1IYYOk5#F%<2P7rwj*UdLIetI-A!yP|qzo>i@)^8s3z0T6m^`S425`Ho za{q3)DH~77wJo@|K1m_iMGbidh|*Z1r|knt?q_^FBwZ;B1C2}byaWhM1bJrB9UD6? zGQh=}W40Nm0#JvfQJ7L3zzd;auR(P{O+*)z3eFp0@?6i$y0^wX{{bPfz*4=|0h%;{ zOiMy&u?J{%?`IAR!X9{odt8FMFdqi81H!n`oP*+&jDvL!@OGM$9zFwH>^c{4WEsvn zp(>YRvZvO^IqD__IM291SPhCH8SB>j;5u*@O0fC-1u@y~>cqrXQoM~|84Sv=S3ZSM zK(_>X$m_DlDEc zBrzXpfzzc0kCo4;Fm9ZzQkLCbyM7#^0M1_$?R_94&?YAo7U+6I6ofF6LKV`*O@V(N z+S{vxK-zXnu&@^f3cc42w>@glBDpZ_DzEpIS*WQ*&wRQzxmD;chUErUvTgUH24O;^ z5GljZ798nnYfytI?h%?hiJP z8qdog$&ZdZXI23AY71Z59$I9?FV=PdV^iRFzR6%zSCrv<^M5AcC4JR*!1Rk}kZbp^ zmu@&kc>jUq1>3E~yi?ZL$htO~hrl|%%EG-HIFSKy)g@Ze8aa_b39a%&YR)9^=3pbq zUifGvax#}YYBhHqz6RQrU!vGn5l4BvLLnax-+gqZlQkPzSZaUmF$VSK<5E)M8$rQ*jrf z{!>F!ScpOjNX^VcQaHT~5mpd)BDFk-3X7!8`r#-zm7APp*n~=H5syMK*j~b|v;mLk zlAwg+jdmI-dN^StGaKS`6-#;{;CXbRfvmq_J;9eGjop@+#e#=NBg?dJG zQ7QXec?a&TFIS`Qu2ZuIQ|+d-dlIYn+&I#r3gCDs^USZ@40V1UJPz|Oih2M!vy`R3iop08E)>7{W<)~{7p zGXU|2LDSB1>@KO^EcTFKUsZbnTo z&r7HaIRyFSOVA!ofHZ9u7+3PlGyBsuOMF2DLTV54A`ES#HynvTFSR^_>G`#L%nh$W zenL<}7U*ilXoz%2Mni8t1b?27aYkR_>>#C}b+NhK<1~g5A*qJfR9(0){S_s8XFhX{ z19{g8yX7O%U51!rFK?RnVGwk_eaB#?3_+G^EF&e3!i~m!=kOxOE4Td<_eFvl{%hy~ z^-W!nLfH%4r7{P?!|rtA5HR5l3jvewCE=gu@SX8(>52knOiX9{pzIfCN3YXEMKG3~+TG!xU_Z+IbURfD^LOpz~+*bTLX z`{V9?MX#U*z$hM05IX1sYiACYOR4zLV>=z%Jpho1Hi{1!J&XFNnEsBw7WDT7FisWa zcCKI&h`VsUEE-gW^Ef5-Ik_YZ1$!K^kT)^zsjvbVQY|#>dmhkpKF!4saqsz0sD(El zt+wPvePJZdrD2aAIpJRL36%5pB0$W-xj#~e9*mUNGwr@`9W zgX6uCY*F@?(9C;bRa?Yb0@^akRUF*otB-C&*!6Q`8d z{DYp0U-d|Qe0Hu1M&^f*f6pu)YjQBezBgSh8-JN}&?6s$fs$wOEG{`=bzmCIHi#?_ zgp=U3?^9;eqf5Rt#11T}c^3Svv_Tjb1|oMLN!IzxIXqkROoL#To&pIZtddlLxfK9r zS-}tj%NtYjDYFPzG>-2h_-jh|T~%v|qF~!RgYce-iN7N66U~d%U*K16TF2kK--*H> zf*H?$Jq?cx)!i1siTv>&uU(^o7LUe!Qh0dD%p|#vbdM-I`;vncVc3{qF=kR-!t}O? zb>q*GTv5nn?g)LL+ShOsIF3*}4Rb2+ZF{C>dS@c73V4rpZc$5MVVvw7J^!&66^2dk z_l&a?E2Z@XuO2`W+P9Ab&3yUFqe$Le9r29v8*|f(tar>BwG>&=rt{MN&rsKB#||(X zUBoct3DM>)a-aUf#Z5Oarptw5&&K`7rzA8n#d;L3H#O_}a~YEz^vy{Gp8wY7;{s&F zqbzZ6999kzT44NzcA#M zy;7oeq4v4ldEHi+(_JY{{Ei25*kxcrp0o0ETiqG#9$zO-4bSgIi%|%We^04Wh`Zn= zOK%Rne6oH$Sm!_!d^zjh%hHB0M6)rXG-&%+PU0gkDeoddoqH^+;YF&b!aIC}7-ltf zq#x4yd4ZGZ`7b7ScL97u`1MrVvdq6(Mbr!B?u>|hN7xz1y zp#bXF#Xt_t_R)Ky{TralJoLN|NBR|L*fXF1Oc$^j(>WMlp?s^+0pCu7!X7rHOvm^nhF&kDr=xpsXQ{qP=t1q;oBraq%@}zFJHkjA#38*9lI+ zF8k`wk%l#GVtd_}syk19ZV0Q5z6YiGUlw*B$VjNQQ#UL5fisqd?JC-&yZgq_I-51v z8sGJ)<;d!I*w&w-)gbGgmi@=wIoq_~wi$DWnq|%%HEHv3c-e@lZ9$tK#(I9%UmVb5 z4=vCR4P3!pXzgCeaa&k*D`uX7gi`NS)64f|Ss0Rpqa(0xgCUuNaZN3n<=L!$}`!xORvQu;#G02y?4K! zY!qg7Wn!V&*DPBrp#7^zxCw+R)=ahvs_WZhDzIm9&&2?}_UoG9@oHu9RO0}H z^>h_ys08xkZwrh&f_C^K;H!Ar$)|9Pvh}ChQSPVHzIJXh`rx!rA^yh3$2myXLF16F zMjo7+An;|+`ME6Pd>_J(@Lp~eYh1Uu*MFXjp4(LF{HcqLmHg0ea~O(7Eo<2YVr#do zw{ppcfjj~~&+}4!_wnsG6CX6T^X8oGy{mMc>NHs~tvwBzt~$A+ux3Se-;EuXsO+dk za4vyI*s65XG(JSleOGba&fj^W8=7OqdK1XYBbnze0Loh~ACPdiH+Kx9Cr5kAPh*WR zmuEaMnl2RJ@aiMF50_Q|SW=jA-hCVy@>u#o%eg4O#&B}xJ+WJ^pQSg^;@bJ3Dt;_! z4Cc8COkeM_~IP3R8N^v&K}8)TnA&!SHhj6>1gQF6}qlkr(A=OUuxwQMY>~8XjD_w)GYkNxfzxN zBZ>m_S=bSn>TBCsq;emV-`&8itxYR99{OdLLsdQTOV*ux_eyl4Vs&2XMO|c%t=yW= zrmcE+YVN)JN{5wgxPrzCSO+E77=SB2n_5Ltt5OIG(Q0*Xz$ z6pq2N{e7|YOB&tMC9D49oqZqjkiX@sxnIgIZUaM9ZB5gl(u ziiB{^r1*%>8szSQo1bufO>@SuaZ?5lWt4`EebRsLqKN-lK2iPL{a9KRBh1@c>o*S1>CB=-)2l)Is7Sm8? zFDtYiiSS4h3)GjDu5Y-e8yeQT%!!f7k@qhqq%PMt@C_hC3uilCL!*DgnO1*4ERtH3 z8L++_FrFl7{4^p+fn083#FwD%*vou)@5I5eorh(SrmjG5hM?b=$NT4;+K|6gmMgGq zMM@=d4uZ&qTgBzPij^3{nb3&?DHV`DU?Yh{t>;m2lt<2B>%ho!rGJ~-uI!(s@Q|;& zgLg|7YpHlT)e45^D0|VM3;wL(4!BS8?e6#*KvTM&H=+0&^{h5|irz}OJNY{a4=>r+ zl@q(P0_N+6(si{7Ik+TtP>c66UV9<9Ld;ScD4_qjBpLlH%G9l9B!~V{`;yb=H5Sz{uv;#^BMlV`&wxl)#j+;5REk}e%}$Ff`*G<;a zjLJW{dN5ieB50__;Ynp03^Q$~!#EhKLV)@ zu&X;^8j{GflzLfTrbQl7y&o3ok4U({>YV;%g$OUXlim|wXJ&nHf4_xWWhV()M*Qht zL39tb>eOIS(VePmOcdfV49Jr3xBN_Gvovn?w~(T_LY=Zf)W?9D-APC3o+LeCTa6Jf zsL%}=pAR3ChKnYa>aFLHres#cWv=DffPzz{bcs#s!g4@Zt|mQ;iyHAX3NigHT*+!U zI=#ekqzAc5e^BrXZcU0Q^}A0ktr?`WO*_g zPTH13%U>Bqn$n2n#>RzXnCZzwvJuN2L&V;=bmn|~yHv%BBkcGgBH2H&fhKPzUVhx6 zzP+iYIt_HERu9+6G00~d zwKNeK^kk-p?msy9Fu-&HZ7y)3=%O)^yDBD7nlfqsaFMK%ITZ-P5p5q$G0^cyZL*dG z%e(H+PQ=*hjc_wjpE-Z@pC#2jfY{4g%XC`0o5o6Z$&a<|lcmlS zELU2jE-Q#4*^Ho%OTEmYaUrAejT}~v8MH+<_gn#NzGEKApi?V03GFZO#G06fM3u>d zmPH@vy5bj1e*}HH|2FrF{)1OVR(;uUr`I;?%#fb?_!|Bd|LLC|*S%q+L~@R?@~Np= zhsKt^ixjR5g&O@fQ!uaj8106#KsUdqc)6D6*t5C+jJ&3LE`J(H;$VIQ^;hoJ+jLLO z^t@gXwZPxrf;OWnVrJ<()0u^y3!nj433cqgahBys~QJl#ehPI`04;j#t6YILb)z|Y z;qS7*Ubp+{$>~+AJtQVX=(fyNGD!ao@>%IeB>_f3SaDKC!)rre9-Zp;F9$7q2tuZvZP3m2J zBniU!!eEoAjLTm3`9otz?bpe7b~)(VWO7=vZf8>>%l_K5N`YFJq6FhP#jcWi7Hpc;Bkj<=?cB zQ0Eri2l0c6F4MY@=B>xq(r;LiOVMO?&%|`l`-|oldtbx1^Y6*1u^$z($cn-DhZE3? z6ix1aQPAzAzuJ$-{YqSKM52nsb~UoaP9L;+BiHJe+n^HrD<2W zO0@V$=fa`?I()AhMP@CfDFuY28ZoB77xnNiFmgh8XMTh!mr(6VISAP`!TKI8wCtNY z-GK=~f=je%^{DOuOg?^Cq}TGE5?~%XyIF&oO{RpSUo=4c-WM;lBq$@1d+AHoXk*wL zn$bT=Xtv03~3YSQYM0hn~e{GY3*wTo=Ua{cKg6 zYx|aWarUmNCgpSZVcwu!XJd?3M + - - - + + + - - - - - - - - - - + + + + + + + + - + \ No newline at end of file diff --git a/src/commands/openYAMLConfigFile.ts b/src/commands/openYAMLConfigFile.ts index 1e1ebab9a..818b8a18f 100644 --- a/src/commands/openYAMLConfigFile.ts +++ b/src/commands/openYAMLConfigFile.ts @@ -3,9 +3,12 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ +import { EOL } from 'os'; import { basename } from 'path'; -import { Position, Range, TextDocument, TextLine, window, workspace } from "vscode"; +import { Range, TextDocument, window, workspace } from "vscode"; import { IActionContext, IAzureQuickPickItem } from "vscode-azureextensionui"; +import { Document, parseDocument } from 'yaml'; +import { Pair, Scalar, YAMLMap, YAMLSeq } from 'yaml/types'; import { ext } from "../extensionVariables"; import { EnvironmentTreeItem } from "../tree/EnvironmentTreeItem"; import { BuildConfig, GitHubConfigGroupTreeItem } from '../tree/localProject/ConfigGroupTreeItem'; @@ -45,15 +48,67 @@ export async function openYAMLConfigFile(context: IActionContext, node?: StaticW await window.showTextDocument(configDocument, { selection }); } -async function getSelection(configDocument: TextDocument, buildConfigToSelect: BuildConfig): Promise { - const configRegex: RegExp = new RegExp(`${buildConfigToSelect}:`); - const offset: number = configDocument.getText().search(configRegex); +/* eslint-disable @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-member-access, no-prototype-builtins, @typescript-eslint/no-unsafe-assignment */ +export async function getSelection(configDocument: TextDocument, buildConfigToSelect: BuildConfig): Promise { + const configDocumentText: string = configDocument.getText(); + const buildConfigRegex: RegExp = new RegExp(`${buildConfigToSelect}:`, 'g'); + const buildConfigMatches: RegExpMatchArray | null = configDocumentText.match(buildConfigRegex); - if (offset === -1) { + if (buildConfigMatches && buildConfigMatches.length > 1) { + void ext.ui.showWarningMessage(localize('foundMultipleBuildConfigs', 'Multiple "{0}" build configurations were found in "{1}".', buildConfigToSelect, basename(configDocument.uri.fsPath))); return undefined; } - const position: Position = configDocument.positionAt(offset); - const line: TextLine = configDocument.lineAt(position); - return line.range; + const parsedYaml: Document.Parsed = parseDocument(configDocumentText); + type YamlNode = YAMLMap | YAMLSeq | Pair | undefined; + const yamlNodes: YamlNode[] = []; + let yamlNode: YamlNode = parsedYaml.get('jobs'); + + while (yamlNode) { + if (yamlNode.hasOwnProperty('key') && yamlNode['key'].value === buildConfigToSelect && yamlNode.hasOwnProperty('value')) { + const configValue = yamlNode['value']; + const range = configValue.range; + + if (range) { + const buildConfigOffset: number = configDocumentText.search(buildConfigRegex); + let newlines: number = 0; + + // The range returned from the `yaml` package doesn't include newlines + // So count newlines and include them in the range we return + for (const char of configDocumentText.slice(0, buildConfigOffset)) { + newlines += char === EOL ? 1 : 0; + } + + const startOffset = range[0] + newlines; + let endOffset = range[1] + newlines; + + if (configValue.comment) { + // `endOffset` by default includes the length of the comment + endOffset -= configValue.comment.length + 1; + + // Don't include the comment character + if (configDocumentText[endOffset] === '#') { + endOffset--; + } + + // Don't include any horizontal whitespace between the end of the YAML value and the comment + while (/[ \t]/.test(configDocumentText[endOffset - 1])) { + endOffset--; + } + } + + const startPosition = configDocument.positionAt(startOffset); + const endPosition = configDocument.positionAt(endOffset); + return new Range(startPosition, endPosition); + } + } else if (yamlNode.hasOwnProperty('items')) { + yamlNodes.push(...yamlNode['items']) + } else if (yamlNode.hasOwnProperty('value') && yamlNode['value'].hasOwnProperty('items')) { + yamlNodes.push(...yamlNode['value']['items']) + } + + yamlNode = yamlNodes.pop(); + } + + return undefined; } diff --git a/test/global.test.ts b/test/global.test.ts index 226aef3dd..91a69f91e 100644 --- a/test/global.test.ts +++ b/test/global.test.ts @@ -32,10 +32,3 @@ suiteSetup(async function (this: IHookCallbackContext): Promise { longRunningTestsEnabled = !/^(false|0)?$/i.test(process.env.ENABLE_LONG_RUNNING_TESTS || ''); }); - -suite('suite1', () => { - test('test1', () => { - // suiteSetup only runs if a suite/test exists, so added a placeholder test here so we can at least verify the extension can activate - // once actual tests exist, we can remove this - }); -}); diff --git a/test/selectBuildConfigs.test.ts b/test/selectBuildConfigs.test.ts new file mode 100644 index 000000000..70b2847f6 --- /dev/null +++ b/test/selectBuildConfigs.test.ts @@ -0,0 +1,63 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See LICENSE.md in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import * as assert from 'assert'; +import { join } from 'path'; +import { Position, Range, TextDocument, workspace } from "vscode"; +import { BuildConfig, getSelection } from "../extension.bundle"; +import { getWorkspacePath } from './utils/workspaceUtils'; + +interface ISelectBuildConfigTestCase { + workflowFileName: string; + buildConfig: BuildConfig; + expectedSelection: undefined | { + line: number; + startChar: number; + endChar: number; + } +} + +suite('Select Build Configurations in GitHub Workflow Files', () => { + const testCases: ISelectBuildConfigTestCase[] = [ + { workflowFileName: 'workflow-simple.yml', buildConfig: 'api_location', expectedSelection: { line: 30, startChar: 24, endChar: 26 } }, + { workflowFileName: 'workflow-simple.yml', buildConfig: 'app_location', expectedSelection: { line: 29, startChar: 24, endChar: 27 } }, + { workflowFileName: 'workflow-simple.yml', buildConfig: 'output_location', expectedSelection: { line: 31, startChar: 27, endChar: 29 } }, + { workflowFileName: 'workflow-simple.yml', buildConfig: 'app_artifact_location', expectedSelection: undefined }, + + { workflowFileName: 'workflow-funky.yml', buildConfig: 'api_location', expectedSelection: { line: 30, startChar: 24, endChar: 39 } }, + { workflowFileName: 'workflow-funky.yml', buildConfig: 'app_location', expectedSelection: { line: 29, startChar: 24, endChar: 57 } }, + { workflowFileName: 'workflow-funky.yml', buildConfig: 'output_location', expectedSelection: { line: 31, startChar: 27, endChar: 54 } }, + { workflowFileName: 'workflow-funky.yml', buildConfig: 'app_artifact_location', expectedSelection: undefined }, + + { workflowFileName: 'workflow-old.yml', buildConfig: 'api_location', expectedSelection: { line: 30, startChar: 24, endChar: 29 } }, + { workflowFileName: 'workflow-old.yml', buildConfig: 'app_location', expectedSelection: { line: 29, startChar: 24, endChar: 29 } }, + { workflowFileName: 'workflow-old.yml', buildConfig: 'output_location', expectedSelection: undefined }, + { workflowFileName: 'workflow-old.yml', buildConfig: 'app_artifact_location', expectedSelection: { line: 31, startChar: 33, endChar: 38 } }, + + { workflowFileName: 'workflow-duplicates.yml', buildConfig: 'api_location', expectedSelection: undefined }, + { workflowFileName: 'workflow-duplicates.yml', buildConfig: 'app_location', expectedSelection: undefined }, + { workflowFileName: 'workflow-duplicates.yml', buildConfig: 'output_location', expectedSelection: undefined }, + { workflowFileName: 'workflow-duplicates.yml', buildConfig: 'app_artifact_location', expectedSelection: undefined }, + ]; + + for (const testCase of testCases) { + const title: string = `${testCase.workflowFileName}: ${testCase.buildConfig}`; + const workspacePath: string = getWorkspacePath('testWorkspace'); + + test(title, async () => { + const configDocument: TextDocument = await workspace.openTextDocument(join(workspacePath, 'testWorkflows', testCase.workflowFileName)); + const selection: Range | undefined = await getSelection(configDocument, testCase.buildConfig); + let expectedSelection: Range | undefined; + + if (testCase.expectedSelection) { + const expectedStart: Position = new Position(testCase.expectedSelection.line, testCase.expectedSelection.startChar); + const expectedEnd: Position = new Position(testCase.expectedSelection.line, testCase.expectedSelection.endChar); + expectedSelection = new Range(expectedStart, expectedEnd); + } + + assert.ok(expectedSelection && selection?.isEqual(expectedSelection) || selection === expectedSelection, 'Actual and expected selections do not match'); + }); + } +}); diff --git a/test/test.code-workspace b/test/test.code-workspace index 3fd6e71b7..44949d696 100644 --- a/test/test.code-workspace +++ b/test/test.code-workspace @@ -1,7 +1,7 @@ { "folders": [ { - "path": "../testWorkspace" + "path": "./testWorkspace" } ] } diff --git a/test/testWorkspace/testWorkflows/workflow-duplicates.yml b/test/testWorkspace/testWorkflows/workflow-duplicates.yml new file mode 100644 index 000000000..2c7d95281 --- /dev/null +++ b/test/testWorkspace/testWorkflows/workflow-duplicates.yml @@ -0,0 +1,67 @@ +name: Azure Static Web Apps CI/CD + +on: + push: + branches: + - master + pull_request: + types: [opened, synchronize, reopened, closed] + branches: + - master + +jobs: + build_and_deploy_job: + if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') + runs-on: ubuntu-latest + name: Build and Deploy Job + steps: + - uses: actions/checkout@v2 + with: + submodules: true + - name: Build And Deploy + id: builddeploy + uses: Azure/static-web-apps-deploy@v0.0.1-preview + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_ROCK_0D992521E }} + repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) + action: "upload" + ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### + # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig + app_location: "/" # App source code path + api_location: "" # Api source code path - optional + output_location: "" # Built app content directory - optional + ###### End of Repository/Build Configurations ###### + + build_and_deploy_job2: + if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') + runs-on: ubuntu-latest + name: Build and Deploy Job + steps: + - uses: actions/checkout@v2 + with: + submodules: true + - name: Build And Deploy + id: builddeploy + uses: Azure/static-web-apps-deploy@v0.0.1-preview + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_ROCK_0D992521E }} + repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) + action: "upload" + ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### + # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig + app_location: "this shouldn't be selected" # App source code path + api_location: "this shouldn't be selected" # Api source code path - optional + output_location: "this shouldn't be selected" # Built app content directory - optional + ###### End of Repository/Build Configurations ###### + + close_pull_request_job: + if: github.event_name == 'pull_request' && github.event.action == 'closed' + runs-on: ubuntu-latest + name: Close Pull Request Job + steps: + - name: Close Pull Request + id: closepullrequest + uses: Azure/static-web-apps-deploy@v0.0.1-preview + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_ROCK_0D992521E }} + action: "close" diff --git a/test/testWorkspace/testWorkflows/workflow-funky.yml b/test/testWorkspace/testWorkflows/workflow-funky.yml new file mode 100644 index 000000000..4cc77b949 --- /dev/null +++ b/test/testWorkspace/testWorkflows/workflow-funky.yml @@ -0,0 +1,45 @@ +name: Azure Static Web Apps CI/CD + +on: + push: + branches: + - master + pull_request: + types: [opened, synchronize, reopened, closed] + branches: + - master + +jobs: + build_and_deploy_job: + if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') + runs-on: ubuntu-latest + name: Build and Deploy Job + steps: + - uses: actions/checkout@v2 + with: + submodules: true + - name: Build And Deploy + id: builddeploy + uses: Azure/static-web-apps-deploy@v0.0.1-preview + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_ROCK_0D992521E }} + repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) + action: "upload" + ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### + # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig + app_location: "super/long/path/to/app/location" #Comment + api_location: 'single/quotes' + output_location: output/location with/spaces # Comment + ###### End of Repository/Build Configurations ###### + + close_pull_request_job: + if: github.event_name == 'pull_request' && github.event.action == 'closed' + runs-on: ubuntu-latest + name: Close Pull Request Job + steps: + - name: Close Pull Request + id: closepullrequest + uses: Azure/static-web-apps-deploy@v0.0.1-preview + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_ROCK_0D992521E }} + action: "close" diff --git a/test/testWorkspace/testWorkflows/workflow-old.yml b/test/testWorkspace/testWorkflows/workflow-old.yml new file mode 100644 index 000000000..25f3cdfb6 --- /dev/null +++ b/test/testWorkspace/testWorkflows/workflow-old.yml @@ -0,0 +1,45 @@ +name: Azure Static Web Apps CI/CD + +on: + push: + branches: + - master + pull_request: + types: [opened, synchronize, reopened, closed] + branches: + - master + +jobs: + build_and_deploy_job: + if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') + runs-on: ubuntu-latest + name: Build and Deploy Job + steps: + - uses: actions/checkout@v2 + with: + submodules: true + - name: Build And Deploy + id: builddeploy + uses: Azure/static-web-apps-deploy@v0.0.1-preview + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_ROCK_0D992521E }} + repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) + action: "upload" + ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### + # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig + app_location: "src" # App source code path + api_location: 'api' # Api source code path - optional + app_artifact_location: build # Built app content directory - optional + ###### End of Repository/Build Configurations ###### + + close_pull_request_job: + if: github.event_name == 'pull_request' && github.event.action == 'closed' + runs-on: ubuntu-latest + name: Close Pull Request Job + steps: + - name: Close Pull Request + id: closepullrequest + uses: Azure/static-web-apps-deploy@v0.0.1-preview + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_ROCK_0D992521E }} + action: "close" diff --git a/test/testWorkspace/testWorkflows/workflow-simple.yml b/test/testWorkspace/testWorkflows/workflow-simple.yml new file mode 100644 index 000000000..aadee92d2 --- /dev/null +++ b/test/testWorkspace/testWorkflows/workflow-simple.yml @@ -0,0 +1,45 @@ +name: Azure Static Web Apps CI/CD + +on: + push: + branches: + - master + pull_request: + types: [opened, synchronize, reopened, closed] + branches: + - master + +jobs: + build_and_deploy_job: + if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') + runs-on: ubuntu-latest + name: Build and Deploy Job + steps: + - uses: actions/checkout@v2 + with: + submodules: true + - name: Build And Deploy + id: builddeploy + uses: Azure/static-web-apps-deploy@v0.0.1-preview + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_ROCK_0D992521E }} + repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) + action: "upload" + ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### + # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig + app_location: "/" # App source code path + api_location: "" # Api source code path - optional + output_location: "" # Built app content directory - optional + ###### End of Repository/Build Configurations ###### + + close_pull_request_job: + if: github.event_name == 'pull_request' && github.event.action == 'closed' + runs-on: ubuntu-latest + name: Close Pull Request Job + steps: + - name: Close Pull Request + id: closepullrequest + uses: Azure/static-web-apps-deploy@v0.0.1-preview + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_ROCK_0D992521E }} + action: "close" diff --git a/test/utils/workspaceUtils.ts b/test/utils/workspaceUtils.ts new file mode 100644 index 000000000..507547f39 --- /dev/null +++ b/test/utils/workspaceUtils.ts @@ -0,0 +1,20 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See LICENSE.md in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import * as assert from 'assert'; +import { workspace, WorkspaceFolder } from "vscode"; + +export function getWorkspacePath(workspaceName: string): string { + const workspaceFolders: readonly WorkspaceFolder[] | undefined = workspace.workspaceFolders; + + assert.ok(workspaceFolders && workspaceFolders.length, 'No workspace is open.'); + + const workspaceFolder: WorkspaceFolder | undefined = workspaceFolders.find(folder => folder.name === workspaceName); + const workspacePath: string | undefined = workspaceFolder?.uri.fsPath; + + assert.ok(workspacePath, `Workspace "${workspaceName}" is not open.`); + + return workspacePath; +} From e9585f2c864ef4820fc797c64c398dbae31d8e68 Mon Sep 17 00:00:00 2001 From: William Lorey Date: Thu, 15 Apr 2021 17:32:16 -0700 Subject: [PATCH 3/7] Revert main.js --- main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.js b/main.js index da19e1e86..01717236a 100644 --- a/main.js +++ b/main.js @@ -16,10 +16,10 @@ let perfStats = { Object.defineProperty(exports, "__esModule", { value: true }); -const extension = require('./dist/extension.bundle'); +const extension = require('./out/src/extension'); async function activate(ctx) { - return await extension.activateInternal(ctx, perfStats); + return await extension.activateInternal(ctx, perfStats, true /* ignoreBundle */); } async function deactivate(ctx) { From f59e34ccf39e2dca8d73032d16d75139d38271c8 Mon Sep 17 00:00:00 2001 From: William Lorey Date: Thu, 15 Apr 2021 17:41:04 -0700 Subject: [PATCH 4/7] Don't use EOL --- src/commands/openYAMLConfigFile.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/commands/openYAMLConfigFile.ts b/src/commands/openYAMLConfigFile.ts index 818b8a18f..eb1fb1486 100644 --- a/src/commands/openYAMLConfigFile.ts +++ b/src/commands/openYAMLConfigFile.ts @@ -3,7 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ -import { EOL } from 'os'; import { basename } from 'path'; import { Range, TextDocument, window, workspace } from "vscode"; import { IActionContext, IAzureQuickPickItem } from "vscode-azureextensionui"; @@ -76,7 +75,7 @@ export async function getSelection(configDocument: TextDocument, buildConfigToSe // The range returned from the `yaml` package doesn't include newlines // So count newlines and include them in the range we return for (const char of configDocumentText.slice(0, buildConfigOffset)) { - newlines += char === EOL ? 1 : 0; + newlines += char === '\n' ? 1 : 0; } const startOffset = range[0] + newlines; From c7f88c4a45d0dccc64cc5b83ab887fd24f53908b Mon Sep 17 00:00:00 2001 From: William Lorey Date: Mon, 19 Apr 2021 13:21:23 -0700 Subject: [PATCH 5/7] Use CSTNode range, remove lint exceptions, add try/catch --- extension.bundle.ts | 2 +- src/commands/openYAMLConfigFile.ts | 97 +++++++++++++++--------------- test/selectBuildConfigs.test.ts | 4 +- 3 files changed, 51 insertions(+), 52 deletions(-) diff --git a/extension.bundle.ts b/extension.bundle.ts index 6b8bc17cb..391d5f388 100644 --- a/extension.bundle.ts +++ b/extension.bundle.ts @@ -15,7 +15,7 @@ // The tests should import '../extension.bundle'. At design-time they live in tests/ and so will pick up this file (extension.bundle.ts). // At runtime the tests live in dist/tests and will therefore pick up the main webpack bundle at dist/extension.bundle.js. export * from 'vscode-azureextensionui'; -export { getSelection } from './src/commands/openYAMLConfigFile'; +export { tryGetSelection } from './src/commands/openYAMLConfigFile'; // Export activate/deactivate for main.js export { activateInternal, deactivateInternal } from './src/extension'; export * from './src/extensionVariables'; diff --git a/src/commands/openYAMLConfigFile.ts b/src/commands/openYAMLConfigFile.ts index eb1fb1486..eb5be266f 100644 --- a/src/commands/openYAMLConfigFile.ts +++ b/src/commands/openYAMLConfigFile.ts @@ -4,9 +4,9 @@ *--------------------------------------------------------------------------------------------*/ import { basename } from 'path'; -import { Range, TextDocument, window, workspace } from "vscode"; +import { Position, Range, TextDocument, window, workspace } from 'vscode'; import { IActionContext, IAzureQuickPickItem } from "vscode-azureextensionui"; -import { Document, parseDocument } from 'yaml'; +import { CST, Document, parseDocument } from 'yaml'; import { Pair, Scalar, YAMLMap, YAMLSeq } from 'yaml/types'; import { ext } from "../extensionVariables"; import { EnvironmentTreeItem } from "../tree/EnvironmentTreeItem"; @@ -43,12 +43,11 @@ export async function openYAMLConfigFile(context: IActionContext, node?: StaticW } const configDocument: TextDocument = await workspace.openTextDocument(yamlFilePath); - const selection: Range | undefined = buildConfigToSelect ? await getSelection(configDocument, buildConfigToSelect) : undefined; + const selection: Range | undefined = buildConfigToSelect ? await tryGetSelection(configDocument, buildConfigToSelect) : undefined; await window.showTextDocument(configDocument, { selection }); } -/* eslint-disable @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-member-access, no-prototype-builtins, @typescript-eslint/no-unsafe-assignment */ -export async function getSelection(configDocument: TextDocument, buildConfigToSelect: BuildConfig): Promise { +export async function tryGetSelection(configDocument: TextDocument, buildConfigToSelect: BuildConfig): Promise { const configDocumentText: string = configDocument.getText(); const buildConfigRegex: RegExp = new RegExp(`${buildConfigToSelect}:`, 'g'); const buildConfigMatches: RegExpMatchArray | null = configDocumentText.match(buildConfigRegex); @@ -58,55 +57,55 @@ export async function getSelection(configDocument: TextDocument, buildConfigToSe return undefined; } - const parsedYaml: Document.Parsed = parseDocument(configDocumentText); - type YamlNode = YAMLMap | YAMLSeq | Pair | undefined; - const yamlNodes: YamlNode[] = []; - let yamlNode: YamlNode = parsedYaml.get('jobs'); - - while (yamlNode) { - if (yamlNode.hasOwnProperty('key') && yamlNode['key'].value === buildConfigToSelect && yamlNode.hasOwnProperty('value')) { - const configValue = yamlNode['value']; - const range = configValue.range; - - if (range) { - const buildConfigOffset: number = configDocumentText.search(buildConfigRegex); - let newlines: number = 0; - - // The range returned from the `yaml` package doesn't include newlines - // So count newlines and include them in the range we return - for (const char of configDocumentText.slice(0, buildConfigOffset)) { - newlines += char === '\n' ? 1 : 0; - } - - const startOffset = range[0] + newlines; - let endOffset = range[1] + newlines; - - if (configValue.comment) { - // `endOffset` by default includes the length of the comment - endOffset -= configValue.comment.length + 1; - - // Don't include the comment character - if (configDocumentText[endOffset] === '#') { - endOffset--; + try { + type YamlNode = YAMLMap | YAMLSeq | Pair | Scalar | undefined | null; + const yamlNodes: YamlNode[] = []; + const parsedYaml: Document.Parsed = parseDocument(configDocumentText, { keepCstNodes: true }); + let yamlNode: YamlNode = parsedYaml.contents; + + while (yamlNode) { + if ('key' in yamlNode && (yamlNode.key).value === buildConfigToSelect && 'value' in yamlNode) { + const cstNode: CST.Node | undefined = (yamlNode.value)?.cstNode; + const range = cstNode?.rangeAsLinePos; + + if (range && range.end) { + // Range isn't zero-indexed by default + range.start.line--; + range.start.col--; + range.end.line--; + range.end.col--; + + if (cstNode?.comment) { + // The end range includes the length of the comment + range.end.col -= cstNode.comment.length + 1; + + const lineText: string = (configDocument.lineAt(range.start.line)).text; + + // Don't include the comment character + if (lineText[range.end.col] === '#') { + range.end.col--; + } + + // Don't include any horizontal whitespace between the end of the YAML value and the comment + while (/[ \t]/.test(lineText[range.end.col - 1])) { + range.end.col--; + } } - // Don't include any horizontal whitespace between the end of the YAML value and the comment - while (/[ \t]/.test(configDocumentText[endOffset - 1])) { - endOffset--; - } + const startPosition: Position = new Position(range.start.line, range.start.col); + const endPosition: Position = new Position(range.end.line, range.end.col); + return configDocument.validateRange(new Range(startPosition, endPosition)); } - - const startPosition = configDocument.positionAt(startOffset); - const endPosition = configDocument.positionAt(endOffset); - return new Range(startPosition, endPosition); + } else if ('items' in yamlNode) { + yamlNodes.push(...yamlNode.items) + } else if ('value' in yamlNode && typeof yamlNode.value === 'object') { + yamlNodes.push(yamlNode.value) } - } else if (yamlNode.hasOwnProperty('items')) { - yamlNodes.push(...yamlNode['items']) - } else if (yamlNode.hasOwnProperty('value') && yamlNode['value'].hasOwnProperty('items')) { - yamlNodes.push(...yamlNode['value']['items']) - } - yamlNode = yamlNodes.pop(); + yamlNode = yamlNodes.pop(); + } + } catch { + // Ignore errors } return undefined; diff --git a/test/selectBuildConfigs.test.ts b/test/selectBuildConfigs.test.ts index 70b2847f6..fba23c664 100644 --- a/test/selectBuildConfigs.test.ts +++ b/test/selectBuildConfigs.test.ts @@ -6,7 +6,7 @@ import * as assert from 'assert'; import { join } from 'path'; import { Position, Range, TextDocument, workspace } from "vscode"; -import { BuildConfig, getSelection } from "../extension.bundle"; +import { BuildConfig, tryGetSelection } from "../extension.bundle"; import { getWorkspacePath } from './utils/workspaceUtils'; interface ISelectBuildConfigTestCase { @@ -48,7 +48,7 @@ suite('Select Build Configurations in GitHub Workflow Files', () => { test(title, async () => { const configDocument: TextDocument = await workspace.openTextDocument(join(workspacePath, 'testWorkflows', testCase.workflowFileName)); - const selection: Range | undefined = await getSelection(configDocument, testCase.buildConfig); + const selection: Range | undefined = await tryGetSelection(configDocument, testCase.buildConfig); let expectedSelection: Range | undefined; if (testCase.expectedSelection) { From c665ddf274081c9799c28aaa239016e1ac0e31c9 Mon Sep 17 00:00:00 2001 From: William Lorey Date: Wed, 21 Apr 2021 12:12:01 -0700 Subject: [PATCH 6/7] Update tests --- .gitignore | 1 + test/selectBuildConfigs.test.ts | 146 ++++++++++++++---- test/test.code-workspace | 2 +- .../testWorkflows/workflow-duplicates.yml | 67 -------- .../testWorkflows/workflow-funky.yml | 45 ------ .../testWorkflows/workflow-old.yml | 45 ------ .../testWorkflows/workflow-simple.yml | 45 ------ test/utils/workspaceUtils.ts | 20 --- 8 files changed, 122 insertions(+), 249 deletions(-) delete mode 100644 test/testWorkspace/testWorkflows/workflow-duplicates.yml delete mode 100644 test/testWorkspace/testWorkflows/workflow-funky.yml delete mode 100644 test/testWorkspace/testWorkflows/workflow-old.yml delete mode 100644 test/testWorkspace/testWorkflows/workflow-simple.yml delete mode 100644 test/utils/workspaceUtils.ts diff --git a/.gitignore b/.gitignore index 6149d6650..c2ea7b37c 100644 --- a/.gitignore +++ b/.gitignore @@ -63,6 +63,7 @@ bin obj *.vsix .vscode-test +testWorkspace test-results.xml dist stats.json diff --git a/test/selectBuildConfigs.test.ts b/test/selectBuildConfigs.test.ts index fba23c664..068c31a08 100644 --- a/test/selectBuildConfigs.test.ts +++ b/test/selectBuildConfigs.test.ts @@ -4,13 +4,11 @@ *--------------------------------------------------------------------------------------------*/ import * as assert from 'assert'; -import { join } from 'path'; -import { Position, Range, TextDocument, workspace } from "vscode"; +import { Position, Range, TextDocument, TextDocumentContentProvider, Uri, workspace } from 'vscode'; import { BuildConfig, tryGetSelection } from "../extension.bundle"; -import { getWorkspacePath } from './utils/workspaceUtils'; interface ISelectBuildConfigTestCase { - workflowFileName: string; + workflowIndex: number; buildConfig: BuildConfig; expectedSelection: undefined | { line: number; @@ -21,33 +19,41 @@ interface ISelectBuildConfigTestCase { suite('Select Build Configurations in GitHub Workflow Files', () => { const testCases: ISelectBuildConfigTestCase[] = [ - { workflowFileName: 'workflow-simple.yml', buildConfig: 'api_location', expectedSelection: { line: 30, startChar: 24, endChar: 26 } }, - { workflowFileName: 'workflow-simple.yml', buildConfig: 'app_location', expectedSelection: { line: 29, startChar: 24, endChar: 27 } }, - { workflowFileName: 'workflow-simple.yml', buildConfig: 'output_location', expectedSelection: { line: 31, startChar: 27, endChar: 29 } }, - { workflowFileName: 'workflow-simple.yml', buildConfig: 'app_artifact_location', expectedSelection: undefined }, - - { workflowFileName: 'workflow-funky.yml', buildConfig: 'api_location', expectedSelection: { line: 30, startChar: 24, endChar: 39 } }, - { workflowFileName: 'workflow-funky.yml', buildConfig: 'app_location', expectedSelection: { line: 29, startChar: 24, endChar: 57 } }, - { workflowFileName: 'workflow-funky.yml', buildConfig: 'output_location', expectedSelection: { line: 31, startChar: 27, endChar: 54 } }, - { workflowFileName: 'workflow-funky.yml', buildConfig: 'app_artifact_location', expectedSelection: undefined }, - - { workflowFileName: 'workflow-old.yml', buildConfig: 'api_location', expectedSelection: { line: 30, startChar: 24, endChar: 29 } }, - { workflowFileName: 'workflow-old.yml', buildConfig: 'app_location', expectedSelection: { line: 29, startChar: 24, endChar: 29 } }, - { workflowFileName: 'workflow-old.yml', buildConfig: 'output_location', expectedSelection: undefined }, - { workflowFileName: 'workflow-old.yml', buildConfig: 'app_artifact_location', expectedSelection: { line: 31, startChar: 33, endChar: 38 } }, - - { workflowFileName: 'workflow-duplicates.yml', buildConfig: 'api_location', expectedSelection: undefined }, - { workflowFileName: 'workflow-duplicates.yml', buildConfig: 'app_location', expectedSelection: undefined }, - { workflowFileName: 'workflow-duplicates.yml', buildConfig: 'output_location', expectedSelection: undefined }, - { workflowFileName: 'workflow-duplicates.yml', buildConfig: 'app_artifact_location', expectedSelection: undefined }, + { workflowIndex: 0, buildConfig: 'api_location', expectedSelection: { line: 7, startChar: 24, endChar: 26 } }, + { workflowIndex: 0, buildConfig: 'app_location', expectedSelection: { line: 6, startChar: 24, endChar: 27 } }, + { workflowIndex: 0, buildConfig: 'output_location', expectedSelection: { line: 8, startChar: 27, endChar: 29 } }, + { workflowIndex: 0, buildConfig: 'app_artifact_location', expectedSelection: undefined }, + + { workflowIndex: 1, buildConfig: 'api_location', expectedSelection: { line: 7, startChar: 24, endChar: 38 } }, + { workflowIndex: 1, buildConfig: 'app_location', expectedSelection: { line: 6, startChar: 24, endChar: 38 } }, + { workflowIndex: 1, buildConfig: 'output_location', expectedSelection: undefined }, + { workflowIndex: 1, buildConfig: 'app_artifact_location', expectedSelection: { line: 8, startChar: 33, endChar: 54 }}, + + { workflowIndex: 2, buildConfig: 'api_location', expectedSelection: undefined }, + { workflowIndex: 2, buildConfig: 'app_location', expectedSelection: undefined }, + { workflowIndex: 2, buildConfig: 'output_location', expectedSelection: undefined }, + { workflowIndex: 2, buildConfig: 'app_artifact_location', expectedSelection: undefined }, + + { workflowIndex: 3, buildConfig: 'api_location', expectedSelection: { line: 30, startChar: 24, endChar: 39 }}, + { workflowIndex: 3, buildConfig: 'app_location', expectedSelection: { line: 29, startChar: 24, endChar: 57 }}, + { workflowIndex: 3, buildConfig: 'output_location', expectedSelection: { line: 31, startChar: 27, endChar: 54 }}, + { workflowIndex: 3, buildConfig: 'app_artifact_location', expectedSelection: undefined }, ]; + const workflowProvider: TextDocumentContentProvider = new (class implements TextDocumentContentProvider { + provideTextDocumentContent(uri: Uri): string { + return workflows[parseInt(uri.path)]; + } + })(); + const scheme: string = 'testWorkflows'; + workspace.registerTextDocumentContentProvider(scheme, workflowProvider); + for (const testCase of testCases) { - const title: string = `${testCase.workflowFileName}: ${testCase.buildConfig}`; - const workspacePath: string = getWorkspacePath('testWorkspace'); + const title: string = `Workflow ${testCase.workflowIndex}: ${testCase.buildConfig}`; test(title, async () => { - const configDocument: TextDocument = await workspace.openTextDocument(join(workspacePath, 'testWorkflows', testCase.workflowFileName)); + const uri: Uri = Uri.parse(`${scheme}:${testCase.workflowIndex}`); + const configDocument: TextDocument = await workspace.openTextDocument(uri); const selection: Range | undefined = await tryGetSelection(configDocument, testCase.buildConfig); let expectedSelection: Range | undefined; @@ -61,3 +67,91 @@ suite('Select Build Configurations in GitHub Workflow Files', () => { }); } }); + +const workflows: string[] = [ +`jobs: + build_and_deploy_job: + steps: + - uses: Azure/static-web-apps-deploy@v0.0.1-preview + id: builddeploy + with: + app_location: "/" + api_location: "" + output_location: ""`, + +`jobs: + build_and_deploy_job: + steps: + - uses: Azure/static-web-apps-deploy@v0.0.1-preview + id: builddeploy + with: + app_location: "app/location" + api_location: 'api/location' + app_artifact_location: app/artifact/location`, + +`jobs: + build_and_deploy_job1: + steps: + - uses: Azure/static-web-apps-deploy@v0.0.1-preview + id: builddeploy + with: + app_location: "src" + api_location: "api" + output_location: "build" + + build_and_deploy_job2: + steps: + - uses: Azure/static-web-apps-deploy@v0.0.1-preview + id: builddeploy + with: + app_location: "src" + api_location: "api" + output_location: "build"`, + +`name: Azure Static Web Apps CI/CD + +on: + push: + branches: + - master + pull_request: + types: [opened, synchronize, reopened, closed] + branches: + - master + +jobs: + build_and_deploy_job: + if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') + runs-on: ubuntu-latest + name: Build and Deploy Job + steps: + - uses: actions/checkout@v2 + with: + submodules: true + - name: Build And Deploy + id: builddeploy + uses: Azure/static-web-apps-deploy@v0.0.1-preview + with: + azure_static_web_apps_api_token: $\{{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_ROCK_0D992521E }} + repo_token: $\{{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) + action: "upload" + ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### + # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig + app_location: "super/long/path/to/app/location" # There are tabs before this comment + api_location: 'single/quotes' #There are spaces before this comment + output_location: output/location with/spaces # There is a single space before this comment + ###### End of Repository/Build Configurations ###### + + close_pull_request_job: + if: github.event_name == 'pull_request' && github.event.action == 'closed' + runs-on: ubuntu-latest + name: Close Pull Request Job + steps: + - name: Close Pull Request + id: closepullrequest + uses: Azure/static-web-apps-deploy@v0.0.1-preview + with: + azure_static_web_apps_api_token: $\{{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_ROCK_0D992521E }} + action: "close" + +`]; diff --git a/test/test.code-workspace b/test/test.code-workspace index 44949d696..3fd6e71b7 100644 --- a/test/test.code-workspace +++ b/test/test.code-workspace @@ -1,7 +1,7 @@ { "folders": [ { - "path": "./testWorkspace" + "path": "../testWorkspace" } ] } diff --git a/test/testWorkspace/testWorkflows/workflow-duplicates.yml b/test/testWorkspace/testWorkflows/workflow-duplicates.yml deleted file mode 100644 index 2c7d95281..000000000 --- a/test/testWorkspace/testWorkflows/workflow-duplicates.yml +++ /dev/null @@ -1,67 +0,0 @@ -name: Azure Static Web Apps CI/CD - -on: - push: - branches: - - master - pull_request: - types: [opened, synchronize, reopened, closed] - branches: - - master - -jobs: - build_and_deploy_job: - if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') - runs-on: ubuntu-latest - name: Build and Deploy Job - steps: - - uses: actions/checkout@v2 - with: - submodules: true - - name: Build And Deploy - id: builddeploy - uses: Azure/static-web-apps-deploy@v0.0.1-preview - with: - azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_ROCK_0D992521E }} - repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) - action: "upload" - ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### - # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig - app_location: "/" # App source code path - api_location: "" # Api source code path - optional - output_location: "" # Built app content directory - optional - ###### End of Repository/Build Configurations ###### - - build_and_deploy_job2: - if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') - runs-on: ubuntu-latest - name: Build and Deploy Job - steps: - - uses: actions/checkout@v2 - with: - submodules: true - - name: Build And Deploy - id: builddeploy - uses: Azure/static-web-apps-deploy@v0.0.1-preview - with: - azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_ROCK_0D992521E }} - repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) - action: "upload" - ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### - # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig - app_location: "this shouldn't be selected" # App source code path - api_location: "this shouldn't be selected" # Api source code path - optional - output_location: "this shouldn't be selected" # Built app content directory - optional - ###### End of Repository/Build Configurations ###### - - close_pull_request_job: - if: github.event_name == 'pull_request' && github.event.action == 'closed' - runs-on: ubuntu-latest - name: Close Pull Request Job - steps: - - name: Close Pull Request - id: closepullrequest - uses: Azure/static-web-apps-deploy@v0.0.1-preview - with: - azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_ROCK_0D992521E }} - action: "close" diff --git a/test/testWorkspace/testWorkflows/workflow-funky.yml b/test/testWorkspace/testWorkflows/workflow-funky.yml deleted file mode 100644 index 4cc77b949..000000000 --- a/test/testWorkspace/testWorkflows/workflow-funky.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: Azure Static Web Apps CI/CD - -on: - push: - branches: - - master - pull_request: - types: [opened, synchronize, reopened, closed] - branches: - - master - -jobs: - build_and_deploy_job: - if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') - runs-on: ubuntu-latest - name: Build and Deploy Job - steps: - - uses: actions/checkout@v2 - with: - submodules: true - - name: Build And Deploy - id: builddeploy - uses: Azure/static-web-apps-deploy@v0.0.1-preview - with: - azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_ROCK_0D992521E }} - repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) - action: "upload" - ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### - # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig - app_location: "super/long/path/to/app/location" #Comment - api_location: 'single/quotes' - output_location: output/location with/spaces # Comment - ###### End of Repository/Build Configurations ###### - - close_pull_request_job: - if: github.event_name == 'pull_request' && github.event.action == 'closed' - runs-on: ubuntu-latest - name: Close Pull Request Job - steps: - - name: Close Pull Request - id: closepullrequest - uses: Azure/static-web-apps-deploy@v0.0.1-preview - with: - azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_ROCK_0D992521E }} - action: "close" diff --git a/test/testWorkspace/testWorkflows/workflow-old.yml b/test/testWorkspace/testWorkflows/workflow-old.yml deleted file mode 100644 index 25f3cdfb6..000000000 --- a/test/testWorkspace/testWorkflows/workflow-old.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: Azure Static Web Apps CI/CD - -on: - push: - branches: - - master - pull_request: - types: [opened, synchronize, reopened, closed] - branches: - - master - -jobs: - build_and_deploy_job: - if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') - runs-on: ubuntu-latest - name: Build and Deploy Job - steps: - - uses: actions/checkout@v2 - with: - submodules: true - - name: Build And Deploy - id: builddeploy - uses: Azure/static-web-apps-deploy@v0.0.1-preview - with: - azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_ROCK_0D992521E }} - repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) - action: "upload" - ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### - # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig - app_location: "src" # App source code path - api_location: 'api' # Api source code path - optional - app_artifact_location: build # Built app content directory - optional - ###### End of Repository/Build Configurations ###### - - close_pull_request_job: - if: github.event_name == 'pull_request' && github.event.action == 'closed' - runs-on: ubuntu-latest - name: Close Pull Request Job - steps: - - name: Close Pull Request - id: closepullrequest - uses: Azure/static-web-apps-deploy@v0.0.1-preview - with: - azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_ROCK_0D992521E }} - action: "close" diff --git a/test/testWorkspace/testWorkflows/workflow-simple.yml b/test/testWorkspace/testWorkflows/workflow-simple.yml deleted file mode 100644 index aadee92d2..000000000 --- a/test/testWorkspace/testWorkflows/workflow-simple.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: Azure Static Web Apps CI/CD - -on: - push: - branches: - - master - pull_request: - types: [opened, synchronize, reopened, closed] - branches: - - master - -jobs: - build_and_deploy_job: - if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') - runs-on: ubuntu-latest - name: Build and Deploy Job - steps: - - uses: actions/checkout@v2 - with: - submodules: true - - name: Build And Deploy - id: builddeploy - uses: Azure/static-web-apps-deploy@v0.0.1-preview - with: - azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_ROCK_0D992521E }} - repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) - action: "upload" - ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### - # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig - app_location: "/" # App source code path - api_location: "" # Api source code path - optional - output_location: "" # Built app content directory - optional - ###### End of Repository/Build Configurations ###### - - close_pull_request_job: - if: github.event_name == 'pull_request' && github.event.action == 'closed' - runs-on: ubuntu-latest - name: Close Pull Request Job - steps: - - name: Close Pull Request - id: closepullrequest - uses: Azure/static-web-apps-deploy@v0.0.1-preview - with: - azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_ROCK_0D992521E }} - action: "close" diff --git a/test/utils/workspaceUtils.ts b/test/utils/workspaceUtils.ts deleted file mode 100644 index 507547f39..000000000 --- a/test/utils/workspaceUtils.ts +++ /dev/null @@ -1,20 +0,0 @@ -/*--------------------------------------------------------------------------------------------- - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See LICENSE.md in the project root for license information. - *--------------------------------------------------------------------------------------------*/ - -import * as assert from 'assert'; -import { workspace, WorkspaceFolder } from "vscode"; - -export function getWorkspacePath(workspaceName: string): string { - const workspaceFolders: readonly WorkspaceFolder[] | undefined = workspace.workspaceFolders; - - assert.ok(workspaceFolders && workspaceFolders.length, 'No workspace is open.'); - - const workspaceFolder: WorkspaceFolder | undefined = workspaceFolders.find(folder => folder.name === workspaceName); - const workspacePath: string | undefined = workspaceFolder?.uri.fsPath; - - assert.ok(workspacePath, `Workspace "${workspaceName}" is not open.`); - - return workspacePath; -} From 7bff21749c565eebb06443ac1d08eedea4146391 Mon Sep 17 00:00:00 2001 From: William Lorey Date: Thu, 22 Apr 2021 15:12:16 -0700 Subject: [PATCH 7/7] Update type, assert, and add special chars test case --- test/selectBuildConfigs.test.ts | 33 ++++++++++++++++++++++++--------- 1 file changed, 24 insertions(+), 9 deletions(-) diff --git a/test/selectBuildConfigs.test.ts b/test/selectBuildConfigs.test.ts index 068c31a08..23c6ab53b 100644 --- a/test/selectBuildConfigs.test.ts +++ b/test/selectBuildConfigs.test.ts @@ -10,11 +10,11 @@ import { BuildConfig, tryGetSelection } from "../extension.bundle"; interface ISelectBuildConfigTestCase { workflowIndex: number; buildConfig: BuildConfig; - expectedSelection: undefined | { + expectedSelection: { line: number; startChar: number; endChar: number; - } + } | undefined; } suite('Select Build Configurations in GitHub Workflow Files', () => { @@ -29,15 +29,20 @@ suite('Select Build Configurations in GitHub Workflow Files', () => { { workflowIndex: 1, buildConfig: 'output_location', expectedSelection: undefined }, { workflowIndex: 1, buildConfig: 'app_artifact_location', expectedSelection: { line: 8, startChar: 33, endChar: 54 }}, - { workflowIndex: 2, buildConfig: 'api_location', expectedSelection: undefined }, - { workflowIndex: 2, buildConfig: 'app_location', expectedSelection: undefined }, - { workflowIndex: 2, buildConfig: 'output_location', expectedSelection: undefined }, + { workflowIndex: 2, buildConfig: 'api_location', expectedSelection: { line: 7, startChar: 24, endChar: 50 } }, + { workflowIndex: 2, buildConfig: 'app_location', expectedSelection: { line: 6, startChar: 24, endChar: 30 } }, + { workflowIndex: 2, buildConfig: 'output_location', expectedSelection: { line: 8, startChar: 27, endChar: 40 } }, { workflowIndex: 2, buildConfig: 'app_artifact_location', expectedSelection: undefined }, - { workflowIndex: 3, buildConfig: 'api_location', expectedSelection: { line: 30, startChar: 24, endChar: 39 }}, - { workflowIndex: 3, buildConfig: 'app_location', expectedSelection: { line: 29, startChar: 24, endChar: 57 }}, - { workflowIndex: 3, buildConfig: 'output_location', expectedSelection: { line: 31, startChar: 27, endChar: 54 }}, + { workflowIndex: 3, buildConfig: 'api_location', expectedSelection: undefined }, + { workflowIndex: 3, buildConfig: 'app_location', expectedSelection: undefined }, + { workflowIndex: 3, buildConfig: 'output_location', expectedSelection: undefined }, { workflowIndex: 3, buildConfig: 'app_artifact_location', expectedSelection: undefined }, + + { workflowIndex: 4, buildConfig: 'api_location', expectedSelection: { line: 30, startChar: 24, endChar: 39 }}, + { workflowIndex: 4, buildConfig: 'app_location', expectedSelection: { line: 29, startChar: 24, endChar: 57 }}, + { workflowIndex: 4, buildConfig: 'output_location', expectedSelection: { line: 31, startChar: 27, endChar: 54 }}, + { workflowIndex: 4, buildConfig: 'app_artifact_location', expectedSelection: undefined }, ]; const workflowProvider: TextDocumentContentProvider = new (class implements TextDocumentContentProvider { @@ -63,7 +68,7 @@ suite('Select Build Configurations in GitHub Workflow Files', () => { expectedSelection = new Range(expectedStart, expectedEnd); } - assert.ok(expectedSelection && selection?.isEqual(expectedSelection) || selection === expectedSelection, 'Actual and expected selections do not match'); + assert.ok(selection && expectedSelection && selection.isEqual(expectedSelection) || selection === expectedSelection, 'Actual and expected selections do not match'); }); } }); @@ -89,6 +94,16 @@ const workflows: string[] = [ api_location: 'api/location' app_artifact_location: app/artifact/location`, +`jobs: + build_and_deploy_job: + steps: + - uses: Azure/static-web-apps-deploy@v0.0.1-preview + id: builddeploy + with: + app_location: 你会说中文吗 # 你会说中文吗 + api_location: $p3c!@L-ÇhärãçΤΕrs &()%^*? # Comment + output_location: "한국어 할 줄 아세요"`, + `jobs: build_and_deploy_job1: steps: