chrome-devtools-mcp 0.25.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/README.md +55 -6
  2. package/build/src/DevtoolsUtils.js +13 -0
  3. package/build/src/HeapSnapshotManager.js +26 -2
  4. package/build/src/McpContext.js +3 -0
  5. package/build/src/McpResponse.js +51 -21
  6. package/build/src/ToolHandler.js +217 -0
  7. package/build/src/WaitForHelper.js +18 -4
  8. package/build/src/bin/check-latest-version.js +25 -1
  9. package/build/src/bin/chrome-devtools-cli-options.js +38 -2
  10. package/build/src/bin/chrome-devtools-mcp-cli-options.js +2 -8
  11. package/build/src/bin/chrome-devtools-mcp-main.js +4 -3
  12. package/build/src/bin/chrome-devtools.js +0 -2
  13. package/build/src/daemon/client.js +12 -6
  14. package/build/src/formatters/HeapSnapshotFormatter.js +27 -6
  15. package/build/src/index.js +11 -164
  16. package/build/src/telemetry/ClearcutLogger.js +34 -118
  17. package/build/src/telemetry/errors.js +18 -0
  18. package/build/src/telemetry/flagUtils.js +4 -3
  19. package/build/src/telemetry/{toolMetricsUtils.js → metricsRegistry.js} +3 -3
  20. package/build/src/telemetry/persistence.js +20 -2
  21. package/build/src/telemetry/transformation.js +134 -0
  22. package/build/src/telemetry/types.js +0 -8
  23. package/build/src/third_party/THIRD_PARTY_NOTICES +140 -857
  24. package/build/src/third_party/bundled-packages.json +3 -3
  25. package/build/src/third_party/devtools-formatter-worker.js +475 -146
  26. package/build/src/third_party/devtools-heap-snapshot-worker.js +39 -44
  27. package/build/src/third_party/index.js +4055 -30401
  28. package/build/src/third_party/issue-descriptions/genericBackUINavigationWouldSkipAd.md +4 -0
  29. package/build/src/third_party/lighthouse-devtools-mcp-bundle.js +4236 -4219
  30. package/build/src/tools/ToolDefinition.js +1 -1
  31. package/build/src/tools/emulation.js +3 -2
  32. package/build/src/tools/input.js +46 -16
  33. package/build/src/tools/lighthouse.js +7 -7
  34. package/build/src/tools/memory.js +24 -0
  35. package/build/src/tools/script.js +32 -10
  36. package/build/src/version.js +1 -1
  37. package/package.json +10 -7
  38. package/build/src/telemetry/metricUtils.js +0 -15
@@ -324,7 +324,7 @@ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH RE
324
324
 
325
325
  Name: semver
326
326
  URL: git+https://github.com/npm/node-semver.git
327
- Version: 7.7.4
327
+ Version: 7.8.0
328
328
  License: ISC
329
329
 
330
330
  The ISC License
@@ -617,15 +617,13 @@ SOFTWARE.
617
617
 
618
618
  Name: fast-uri
619
619
  URL: https://github.com/fastify/fast-uri
620
- Version: 3.1.0
620
+ Version: 3.1.2
621
621
  License: BSD-3-Clause
622
622
 
623
623
  Copyright (c) 2011-2021, Gary Court until https://github.com/garycourt/uri-js/commit/a1acf730b4bba3f1097c9f52e7d9d3aba8cdcaae
624
- Copyright (c) 2021-present The Fastify team
624
+ Copyright (c) 2021-present The Fastify team <https://github.com/fastify/fastify#team>
625
625
  All rights reserved.
626
626
 
627
- The Fastify team members are listed at https://github.com/fastify/fastify#team.
628
-
629
627
  Redistribution and use in source and binary forms, with or without
630
628
  modification, are permitted provided that the following conditions are met:
631
629
  * Redistributions of source code must retain the above copyright
@@ -642,632 +640,27 @@ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
642
640
  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
643
641
  DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY
644
642
  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
645
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
646
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
647
- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
648
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
649
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
650
-
651
- * * *
652
-
653
- The complete list of contributors can be found at:
654
- - https://github.com/garycourt/uri-js/graphs/contributors
655
-
656
- -------------------- DEPENDENCY DIVIDER --------------------
657
-
658
- Name: ajv-formats
659
- URL: https://github.com/ajv-validator/ajv-formats#readme
660
- Version: 3.0.1
661
- License: MIT
662
-
663
- MIT License
664
-
665
- Copyright (c) 2020 Evgeny Poberezkin
666
-
667
- Permission is hereby granted, free of charge, to any person obtaining a copy
668
- of this software and associated documentation files (the "Software"), to deal
669
- in the Software without restriction, including without limitation the rights
670
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
671
- copies of the Software, and to permit persons to whom the Software is
672
- furnished to do so, subject to the following conditions:
673
-
674
- The above copyright notice and this permission notice shall be included in all
675
- copies or substantial portions of the Software.
676
-
677
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
678
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
679
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
680
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
681
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
682
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
683
- SOFTWARE.
684
-
685
-
686
- -------------------- DEPENDENCY DIVIDER --------------------
687
-
688
- Name: cross-spawn
689
- URL: https://github.com/moxystudio/node-cross-spawn
690
- Version: 7.0.6
691
- License: MIT
692
-
693
- The MIT License (MIT)
694
-
695
- Copyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>
696
-
697
- Permission is hereby granted, free of charge, to any person obtaining a copy
698
- of this software and associated documentation files (the "Software"), to deal
699
- in the Software without restriction, including without limitation the rights
700
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
701
- copies of the Software, and to permit persons to whom the Software is
702
- furnished to do so, subject to the following conditions:
703
-
704
- The above copyright notice and this permission notice shall be included in
705
- all copies or substantial portions of the Software.
706
-
707
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
708
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
709
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
710
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
711
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
712
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
713
- THE SOFTWARE.
714
-
715
-
716
- -------------------- DEPENDENCY DIVIDER --------------------
717
-
718
- Name: isexe
719
- URL: https://github.com/isaacs/isexe#readme
720
- Version: 2.0.0
721
- License: ISC
722
-
723
- The ISC License
724
-
725
- Copyright (c) Isaac Z. Schlueter and Contributors
726
-
727
- Permission to use, copy, modify, and/or distribute this software for any
728
- purpose with or without fee is hereby granted, provided that the above
729
- copyright notice and this permission notice appear in all copies.
730
-
731
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
732
- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
733
- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
734
- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
735
- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
736
- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
737
- IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
738
-
739
-
740
- -------------------- DEPENDENCY DIVIDER --------------------
741
-
742
- Name: which
743
- URL: git://github.com/isaacs/node-which.git
744
- Version: 2.0.2
745
- License: ISC
746
-
747
- The ISC License
748
-
749
- Copyright (c) Isaac Z. Schlueter and Contributors
750
-
751
- Permission to use, copy, modify, and/or distribute this software for any
752
- purpose with or without fee is hereby granted, provided that the above
753
- copyright notice and this permission notice appear in all copies.
754
-
755
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
756
- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
757
- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
758
- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
759
- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
760
- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
761
- IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
762
-
763
-
764
- -------------------- DEPENDENCY DIVIDER --------------------
765
-
766
- Name: path-key
767
- URL: sindresorhus/path-key
768
- Version: 3.1.1
769
- License: MIT
770
-
771
- MIT License
772
-
773
- Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
774
-
775
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
776
-
777
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
778
-
779
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
780
-
781
-
782
- -------------------- DEPENDENCY DIVIDER --------------------
783
-
784
- Name: shebang-regex
785
- URL: sindresorhus/shebang-regex
786
- Version: 3.0.0
787
- License: MIT
788
-
789
- MIT License
790
-
791
- Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
792
-
793
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
794
-
795
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
796
-
797
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
798
-
799
-
800
- -------------------- DEPENDENCY DIVIDER --------------------
801
-
802
- Name: shebang-command
803
- URL: kevva/shebang-command
804
- Version: 2.0.0
805
- License: MIT
806
-
807
- MIT License
808
-
809
- Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
810
-
811
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
812
-
813
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
814
-
815
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
816
-
817
-
818
- -------------------- DEPENDENCY DIVIDER --------------------
819
-
820
- Name: uri-js
821
- URL: https://github.com/garycourt/uri-js
822
- Version: 4.4.1
823
- License: BSD-2-Clause
824
-
825
- Copyright 2011 Gary Court. All rights reserved.
826
-
827
- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
828
-
829
- 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
830
-
831
- 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.
832
-
833
- THIS SOFTWARE IS PROVIDED BY GARY COURT "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GARY COURT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
834
-
835
- The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of Gary Court.
836
-
837
-
838
- -------------------- DEPENDENCY DIVIDER --------------------
839
-
840
- Name: fast-json-stable-stringify
841
- URL: https://github.com/epoberezkin/fast-json-stable-stringify
842
- Version: 2.1.0
843
- License: MIT
844
-
845
- This software is released under the MIT license:
846
-
847
- Copyright (c) 2017 Evgeny Poberezkin
848
- Copyright (c) 2013 James Halliday
849
-
850
- Permission is hereby granted, free of charge, to any person obtaining a copy of
851
- this software and associated documentation files (the "Software"), to deal in
852
- the Software without restriction, including without limitation the rights to
853
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
854
- the Software, and to permit persons to whom the Software is furnished to do so,
855
- subject to the following conditions:
856
-
857
- The above copyright notice and this permission notice shall be included in all
858
- copies or substantial portions of the Software.
859
-
860
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
861
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
862
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
863
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
864
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
865
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
866
-
867
-
868
- -------------------- DEPENDENCY DIVIDER --------------------
869
-
870
- Name: puppeteer-core
871
- URL: https://github.com/puppeteer/puppeteer/tree/main/packages/puppeteer-core
872
- Version: 24.43.0
873
- License: Apache-2.0
874
-
875
- -------------------- DEPENDENCY DIVIDER --------------------
876
-
877
- Name: @puppeteer/browsers
878
- URL: https://github.com/puppeteer/puppeteer/tree/main/packages/browsers
879
- Version: 2.13.1
880
- License: Apache-2.0
881
-
882
- -------------------- DEPENDENCY DIVIDER --------------------
883
-
884
- Name: proxy-agent
885
- URL: https://github.com/TooTallNate/proxy-agents.git
886
- Version: 6.5.0
887
- License: MIT
888
-
889
- (The MIT License)
890
-
891
- Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
892
-
893
- Permission is hereby granted, free of charge, to any person obtaining
894
- a copy of this software and associated documentation files (the
895
- 'Software'), to deal in the Software without restriction, including
896
- without limitation the rights to use, copy, modify, merge, publish,
897
- distribute, sublicense, and/or sell copies of the Software, and to
898
- permit persons to whom the Software is furnished to do so, subject to
899
- the following conditions:
900
-
901
- The above copyright notice and this permission notice shall be
902
- included in all copies or substantial portions of the Software.
903
-
904
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
905
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
906
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
907
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
908
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
909
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
910
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
911
-
912
- -------------------- DEPENDENCY DIVIDER --------------------
913
-
914
- Name: lru-cache
915
- URL: git://github.com/isaacs/node-lru-cache.git
916
- Version: 7.18.3
917
- License: ISC
918
-
919
- The ISC License
920
-
921
- Copyright (c) 2010-2023 Isaac Z. Schlueter and Contributors
922
-
923
- Permission to use, copy, modify, and/or distribute this software for any
924
- purpose with or without fee is hereby granted, provided that the above
925
- copyright notice and this permission notice appear in all copies.
926
-
927
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
928
- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
929
- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
930
- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
931
- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
932
- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
933
- IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
934
-
935
-
936
- -------------------- DEPENDENCY DIVIDER --------------------
937
-
938
- Name: agent-base
939
- URL: https://github.com/TooTallNate/proxy-agents.git
940
- Version: 7.1.4
941
- License: MIT
942
-
943
- (The MIT License)
944
-
945
- Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
946
-
947
- Permission is hereby granted, free of charge, to any person obtaining
948
- a copy of this software and associated documentation files (the
949
- 'Software'), to deal in the Software without restriction, including
950
- without limitation the rights to use, copy, modify, merge, publish,
951
- distribute, sublicense, and/or sell copies of the Software, and to
952
- permit persons to whom the Software is furnished to do so, subject to
953
- the following conditions:
954
-
955
- The above copyright notice and this permission notice shall be
956
- included in all copies or substantial portions of the Software.
957
-
958
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
959
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
960
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
961
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
962
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
963
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
964
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
965
-
966
- -------------------- DEPENDENCY DIVIDER --------------------
967
-
968
- Name: proxy-from-env
969
- URL: https://github.com/Rob--W/proxy-from-env#readme
970
- Version: 1.1.0
971
- License: MIT
972
-
973
- The MIT License
974
-
975
- Copyright (C) 2016-2018 Rob Wu <rob@robwu.nl>
976
-
977
- Permission is hereby granted, free of charge, to any person obtaining a copy of
978
- this software and associated documentation files (the "Software"), to deal in
979
- the Software without restriction, including without limitation the rights to
980
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
981
- of the Software, and to permit persons to whom the Software is furnished to do
982
- so, subject to the following conditions:
983
-
984
- The above copyright notice and this permission notice shall be included in all
985
- copies or substantial portions of the Software.
986
-
987
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
988
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
989
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
990
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
991
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
992
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
993
-
994
-
995
- -------------------- DEPENDENCY DIVIDER --------------------
996
-
997
- Name: http-proxy-agent
998
- URL: https://github.com/TooTallNate/proxy-agents.git
999
- Version: 7.0.2
1000
- License: MIT
1001
-
1002
- (The MIT License)
1003
-
1004
- Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
1005
-
1006
- Permission is hereby granted, free of charge, to any person obtaining
1007
- a copy of this software and associated documentation files (the
1008
- 'Software'), to deal in the Software without restriction, including
1009
- without limitation the rights to use, copy, modify, merge, publish,
1010
- distribute, sublicense, and/or sell copies of the Software, and to
1011
- permit persons to whom the Software is furnished to do so, subject to
1012
- the following conditions:
1013
-
1014
- The above copyright notice and this permission notice shall be
1015
- included in all copies or substantial portions of the Software.
1016
-
1017
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1018
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1019
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1020
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1021
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1022
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1023
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1024
-
1025
-
1026
- -------------------- DEPENDENCY DIVIDER --------------------
1027
-
1028
- Name: https-proxy-agent
1029
- URL: https://github.com/TooTallNate/proxy-agents.git
1030
- Version: 7.0.6
1031
- License: MIT
1032
-
1033
- (The MIT License)
1034
-
1035
- Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
1036
-
1037
- Permission is hereby granted, free of charge, to any person obtaining
1038
- a copy of this software and associated documentation files (the
1039
- 'Software'), to deal in the Software without restriction, including
1040
- without limitation the rights to use, copy, modify, merge, publish,
1041
- distribute, sublicense, and/or sell copies of the Software, and to
1042
- permit persons to whom the Software is furnished to do so, subject to
1043
- the following conditions:
1044
-
1045
- The above copyright notice and this permission notice shall be
1046
- included in all copies or substantial portions of the Software.
1047
-
1048
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1049
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1050
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1051
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1052
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1053
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1054
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1055
-
1056
- -------------------- DEPENDENCY DIVIDER --------------------
1057
-
1058
- Name: socks-proxy-agent
1059
- URL: https://github.com/TooTallNate/proxy-agents.git
1060
- Version: 8.0.5
1061
- License: MIT
1062
-
1063
- (The MIT License)
1064
-
1065
- Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
1066
-
1067
- Permission is hereby granted, free of charge, to any person obtaining
1068
- a copy of this software and associated documentation files (the
1069
- 'Software'), to deal in the Software without restriction, including
1070
- without limitation the rights to use, copy, modify, merge, publish,
1071
- distribute, sublicense, and/or sell copies of the Software, and to
1072
- permit persons to whom the Software is furnished to do so, subject to
1073
- the following conditions:
1074
-
1075
- The above copyright notice and this permission notice shall be
1076
- included in all copies or substantial portions of the Software.
1077
-
1078
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1079
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1080
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1081
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1082
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1083
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1084
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1085
-
1086
- -------------------- DEPENDENCY DIVIDER --------------------
1087
-
1088
- Name: socks
1089
- URL: https://github.com/JoshGlazebrook/socks/
1090
- Version: 2.8.7
1091
- License: MIT
1092
-
1093
- The MIT License (MIT)
1094
-
1095
- Copyright (c) 2013 Josh Glazebrook
1096
-
1097
- Permission is hereby granted, free of charge, to any person obtaining a copy of
1098
- this software and associated documentation files (the "Software"), to deal in
1099
- the Software without restriction, including without limitation the rights to
1100
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1101
- the Software, and to permit persons to whom the Software is furnished to do so,
1102
- subject to the following conditions:
1103
-
1104
- The above copyright notice and this permission notice shall be included in all
1105
- copies or substantial portions of the Software.
1106
-
1107
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1108
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1109
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1110
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1111
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1112
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1113
-
1114
-
1115
- -------------------- DEPENDENCY DIVIDER --------------------
1116
-
1117
- Name: smart-buffer
1118
- URL: https://github.com/JoshGlazebrook/smart-buffer/
1119
- Version: 4.2.0
1120
- License: MIT
1121
-
1122
- The MIT License (MIT)
1123
-
1124
- Copyright (c) 2013-2017 Josh Glazebrook
1125
-
1126
- Permission is hereby granted, free of charge, to any person obtaining a copy of
1127
- this software and associated documentation files (the "Software"), to deal in
1128
- the Software without restriction, including without limitation the rights to
1129
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1130
- the Software, and to permit persons to whom the Software is furnished to do so,
1131
- subject to the following conditions:
1132
-
1133
- The above copyright notice and this permission notice shall be included in all
1134
- copies or substantial portions of the Software.
1135
-
1136
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1137
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1138
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1139
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1140
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1141
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1142
-
1143
-
1144
- -------------------- DEPENDENCY DIVIDER --------------------
1145
-
1146
- Name: ip-address
1147
- URL: git://github.com/beaugunderson/ip-address.git
1148
- Version: 10.1.0
1149
- License: MIT
1150
-
1151
- Copyright (C) 2011 by Beau Gunderson
1152
-
1153
- Permission is hereby granted, free of charge, to any person obtaining a copy
1154
- of this software and associated documentation files (the "Software"), to deal
1155
- in the Software without restriction, including without limitation the rights
1156
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1157
- copies of the Software, and to permit persons to whom the Software is
1158
- furnished to do so, subject to the following conditions:
1159
-
1160
- The above copyright notice and this permission notice shall be included in
1161
- all copies or substantial portions of the Software.
1162
-
1163
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1164
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1165
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1166
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1167
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1168
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1169
- THE SOFTWARE.
1170
-
1171
-
1172
- -------------------- DEPENDENCY DIVIDER --------------------
1173
-
1174
- Name: pac-proxy-agent
1175
- URL: https://github.com/TooTallNate/proxy-agents.git
1176
- Version: 7.2.0
1177
- License: MIT
1178
-
1179
- (The MIT License)
1180
-
1181
- Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>
1182
-
1183
- Permission is hereby granted, free of charge, to any person obtaining
1184
- a copy of this software and associated documentation files (the
1185
- 'Software'), to deal in the Software without restriction, including
1186
- without limitation the rights to use, copy, modify, merge, publish,
1187
- distribute, sublicense, and/or sell copies of the Software, and to
1188
- permit persons to whom the Software is furnished to do so, subject to
1189
- the following conditions:
1190
-
1191
- The above copyright notice and this permission notice shall be
1192
- included in all copies or substantial portions of the Software.
1193
-
1194
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1195
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1196
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1197
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1198
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1199
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1200
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1201
-
1202
-
1203
- -------------------- DEPENDENCY DIVIDER --------------------
1204
-
1205
- Name: get-uri
1206
- URL: https://github.com/TooTallNate/proxy-agents.git
1207
- Version: 6.0.5
1208
- License: MIT
1209
-
1210
- (The MIT License)
1211
-
1212
- Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>
1213
-
1214
- Permission is hereby granted, free of charge, to any person obtaining
1215
- a copy of this software and associated documentation files (the
1216
- 'Software'), to deal in the Software without restriction, including
1217
- without limitation the rights to use, copy, modify, merge, publish,
1218
- distribute, sublicense, and/or sell copies of the Software, and to
1219
- permit persons to whom the Software is furnished to do so, subject to
1220
- the following conditions:
1221
-
1222
- The above copyright notice and this permission notice shall be
1223
- included in all copies or substantial portions of the Software.
1224
-
1225
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1226
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1227
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1228
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1229
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1230
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1231
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1232
-
1233
- -------------------- DEPENDENCY DIVIDER --------------------
1234
-
1235
- Name: data-uri-to-buffer
1236
- URL: https://github.com/TooTallNate/proxy-agents.git
1237
- Version: 6.0.2
1238
- License: MIT
1239
-
1240
- (The MIT License)
1241
-
1242
- Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>
1243
-
1244
- Permission is hereby granted, free of charge, to any person obtaining
1245
- a copy of this software and associated documentation files (the
1246
- 'Software'), to deal in the Software without restriction, including
1247
- without limitation the rights to use, copy, modify, merge, publish,
1248
- distribute, sublicense, and/or sell copies of the Software, and to
1249
- permit persons to whom the Software is furnished to do so, subject to
1250
- the following conditions:
643
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
644
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
645
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
646
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
647
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1251
648
 
1252
- The above copyright notice and this permission notice shall be
1253
- included in all copies or substantial portions of the Software.
649
+ * * *
1254
650
 
1255
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1256
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1257
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1258
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1259
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1260
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1261
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
651
+ The complete list of contributors can be found at:
652
+ - https://github.com/garycourt/uri-js/graphs/contributors
1262
653
 
1263
654
  -------------------- DEPENDENCY DIVIDER --------------------
1264
655
 
1265
- Name: basic-ftp
1266
- URL: https://github.com/patrickjuchli/basic-ftp.git
1267
- Version: 5.3.0
656
+ Name: ajv-formats
657
+ URL: https://github.com/ajv-validator/ajv-formats#readme
658
+ Version: 3.0.1
1268
659
  License: MIT
1269
660
 
1270
- Copyright (c) 2019 Patrick Juchli
661
+ MIT License
662
+
663
+ Copyright (c) 2020 Evgeny Poberezkin
1271
664
 
1272
665
  Permission is hereby granted, free of charge, to any person obtaining a copy
1273
666
  of this software and associated documentation files (the "Software"), to deal
@@ -1287,312 +680,202 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1287
680
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1288
681
  SOFTWARE.
1289
682
 
683
+
1290
684
  -------------------- DEPENDENCY DIVIDER --------------------
1291
685
 
1292
- Name: pac-resolver
1293
- URL: https://github.com/TooTallNate/proxy-agents.git
1294
- Version: 7.0.1
686
+ Name: cross-spawn
687
+ URL: https://github.com/moxystudio/node-cross-spawn
688
+ Version: 7.0.6
1295
689
  License: MIT
1296
690
 
1297
- (The MIT License)
1298
-
1299
- Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
691
+ The MIT License (MIT)
1300
692
 
1301
- Permission is hereby granted, free of charge, to any person obtaining
1302
- a copy of this software and associated documentation files (the
1303
- 'Software'), to deal in the Software without restriction, including
1304
- without limitation the rights to use, copy, modify, merge, publish,
1305
- distribute, sublicense, and/or sell copies of the Software, and to
1306
- permit persons to whom the Software is furnished to do so, subject to
1307
- the following conditions:
693
+ Copyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>
1308
694
 
1309
- The above copyright notice and this permission notice shall be
1310
- included in all copies or substantial portions of the Software.
695
+ Permission is hereby granted, free of charge, to any person obtaining a copy
696
+ of this software and associated documentation files (the "Software"), to deal
697
+ in the Software without restriction, including without limitation the rights
698
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
699
+ copies of the Software, and to permit persons to whom the Software is
700
+ furnished to do so, subject to the following conditions:
1311
701
 
1312
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1313
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1314
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1315
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1316
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1317
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1318
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
702
+ The above copyright notice and this permission notice shall be included in
703
+ all copies or substantial portions of the Software.
1319
704
 
1320
- -------------------- DEPENDENCY DIVIDER --------------------
705
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
706
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
707
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
708
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
709
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
710
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
711
+ THE SOFTWARE.
1321
712
 
1322
- Name: degenerator
1323
- URL: https://github.com/TooTallNate/proxy-agents.git
1324
- Version: 5.0.1
1325
- License: MIT
1326
713
 
1327
714
  -------------------- DEPENDENCY DIVIDER --------------------
1328
715
 
1329
- Name: escodegen
1330
- URL: http://github.com/estools/escodegen
1331
- Version: 2.1.0
1332
- License: BSD-2-Clause
716
+ Name: isexe
717
+ URL: https://github.com/isaacs/isexe#readme
718
+ Version: 2.0.0
719
+ License: ISC
1333
720
 
1334
- Copyright (C) 2012 Yusuke Suzuki (twitter: @Constellation) and other contributors.
721
+ The ISC License
1335
722
 
1336
- Redistribution and use in source and binary forms, with or without
1337
- modification, are permitted provided that the following conditions are met:
723
+ Copyright (c) Isaac Z. Schlueter and Contributors
1338
724
 
1339
- * Redistributions of source code must retain the above copyright
1340
- notice, this list of conditions and the following disclaimer.
1341
- * Redistributions in binary form must reproduce the above copyright
1342
- notice, this list of conditions and the following disclaimer in the
1343
- documentation and/or other materials provided with the distribution.
725
+ Permission to use, copy, modify, and/or distribute this software for any
726
+ purpose with or without fee is hereby granted, provided that the above
727
+ copyright notice and this permission notice appear in all copies.
1344
728
 
1345
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1346
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1347
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1348
- ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
1349
- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1350
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1351
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1352
- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1353
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
1354
- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
729
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
730
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
731
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
732
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
733
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
734
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
735
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1355
736
 
1356
737
 
1357
738
  -------------------- DEPENDENCY DIVIDER --------------------
1358
739
 
1359
- Name: estraverse
1360
- URL: https://github.com/estools/estraverse
1361
- Version: 5.3.0
1362
- License: BSD-2-Clause
1363
-
1364
- Redistribution and use in source and binary forms, with or without
1365
- modification, are permitted provided that the following conditions are met:
1366
-
1367
- * Redistributions of source code must retain the above copyright
1368
- notice, this list of conditions and the following disclaimer.
1369
- * Redistributions in binary form must reproduce the above copyright
1370
- notice, this list of conditions and the following disclaimer in the
1371
- documentation and/or other materials provided with the distribution.
1372
-
1373
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1374
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1375
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1376
- ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
1377
- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1378
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1379
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1380
- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1381
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
1382
- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1383
-
1384
-
1385
- -------------------- DEPENDENCY DIVIDER --------------------
740
+ Name: which
741
+ URL: git://github.com/isaacs/node-which.git
742
+ Version: 2.0.2
743
+ License: ISC
1386
744
 
1387
- Name: esutils
1388
- URL: https://github.com/estools/esutils
1389
- Version: 2.0.3
1390
- License: BSD-2-Clause
745
+ The ISC License
1391
746
 
1392
- Redistribution and use in source and binary forms, with or without
1393
- modification, are permitted provided that the following conditions are met:
747
+ Copyright (c) Isaac Z. Schlueter and Contributors
1394
748
 
1395
- * Redistributions of source code must retain the above copyright
1396
- notice, this list of conditions and the following disclaimer.
1397
- * Redistributions in binary form must reproduce the above copyright
1398
- notice, this list of conditions and the following disclaimer in the
1399
- documentation and/or other materials provided with the distribution.
749
+ Permission to use, copy, modify, and/or distribute this software for any
750
+ purpose with or without fee is hereby granted, provided that the above
751
+ copyright notice and this permission notice appear in all copies.
1400
752
 
1401
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1402
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1403
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1404
- ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
1405
- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1406
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1407
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1408
- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1409
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
1410
- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
753
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
754
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
755
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
756
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
757
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
758
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
759
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1411
760
 
1412
761
 
1413
762
  -------------------- DEPENDENCY DIVIDER --------------------
1414
763
 
1415
- Name: source-map
1416
- URL: https://github.com/mozilla/source-map
1417
- Version: 0.6.1
1418
- License: BSD-3-Clause
1419
-
1420
-
1421
- Copyright (c) 2009-2011, Mozilla Foundation and contributors
1422
- All rights reserved.
764
+ Name: path-key
765
+ URL: sindresorhus/path-key
766
+ Version: 3.1.1
767
+ License: MIT
1423
768
 
1424
- Redistribution and use in source and binary forms, with or without
1425
- modification, are permitted provided that the following conditions are met:
769
+ MIT License
1426
770
 
1427
- * Redistributions of source code must retain the above copyright notice, this
1428
- list of conditions and the following disclaimer.
771
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1429
772
 
1430
- * Redistributions in binary form must reproduce the above copyright notice,
1431
- this list of conditions and the following disclaimer in the documentation
1432
- and/or other materials provided with the distribution.
773
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1433
774
 
1434
- * Neither the names of the Mozilla Foundation nor the names of project
1435
- contributors may be used to endorse or promote products derived from this
1436
- software without specific prior written permission.
775
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1437
776
 
1438
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1439
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1440
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1441
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
1442
- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1443
- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1444
- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1445
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1446
- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1447
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
777
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1448
778
 
1449
779
 
1450
780
  -------------------- DEPENDENCY DIVIDER --------------------
1451
781
 
1452
- Name: esprima
1453
- URL: http://esprima.org
1454
- Version: 4.0.1
1455
- License: BSD-2-Clause
782
+ Name: shebang-regex
783
+ URL: sindresorhus/shebang-regex
784
+ Version: 3.0.0
785
+ License: MIT
786
+
787
+ MIT License
1456
788
 
1457
- Copyright JS Foundation and other contributors, https://js.foundation/
789
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1458
790
 
1459
- Redistribution and use in source and binary forms, with or without
1460
- modification, are permitted provided that the following conditions are met:
791
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1461
792
 
1462
- * Redistributions of source code must retain the above copyright
1463
- notice, this list of conditions and the following disclaimer.
1464
- * Redistributions in binary form must reproduce the above copyright
1465
- notice, this list of conditions and the following disclaimer in the
1466
- documentation and/or other materials provided with the distribution.
793
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1467
794
 
1468
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1469
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1470
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1471
- ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
1472
- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1473
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1474
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1475
- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1476
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
1477
- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
795
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1478
796
 
1479
797
 
1480
798
  -------------------- DEPENDENCY DIVIDER --------------------
1481
799
 
1482
- Name: ast-types
1483
- URL: http://github.com/benjamn/ast-types
1484
- Version: 0.13.4
800
+ Name: shebang-command
801
+ URL: kevva/shebang-command
802
+ Version: 2.0.0
1485
803
  License: MIT
1486
804
 
1487
- Copyright (c) 2013 Ben Newman <bn@cs.stanford.edu>
805
+ MIT License
1488
806
 
1489
- Permission is hereby granted, free of charge, to any person obtaining
1490
- a copy of this software and associated documentation files (the
1491
- "Software"), to deal in the Software without restriction, including
1492
- without limitation the rights to use, copy, modify, merge, publish,
1493
- distribute, sublicense, and/or sell copies of the Software, and to
1494
- permit persons to whom the Software is furnished to do so, subject to
1495
- the following conditions:
807
+ Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
1496
808
 
1497
- The above copyright notice and this permission notice shall be
1498
- included in all copies or substantial portions of the Software.
809
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1499
810
 
1500
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1501
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1502
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1503
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1504
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1505
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1506
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
811
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
812
+
813
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1507
814
 
1508
815
 
1509
816
  -------------------- DEPENDENCY DIVIDER --------------------
1510
817
 
1511
- Name: tslib
1512
- URL: https://www.typescriptlang.org/
1513
- Version: 2.8.1
1514
- License: 0BSD
818
+ Name: uri-js
819
+ URL: https://github.com/garycourt/uri-js
820
+ Version: 4.4.1
821
+ License: BSD-2-Clause
1515
822
 
1516
- Copyright (c) Microsoft Corporation.
823
+ Copyright 2011 Gary Court. All rights reserved.
1517
824
 
1518
- Permission to use, copy, modify, and/or distribute this software for any
1519
- purpose with or without fee is hereby granted.
825
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1520
826
 
1521
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
1522
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
1523
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
1524
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
1525
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
1526
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
1527
- PERFORMANCE OF THIS SOFTWARE.
827
+ 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
1528
828
 
1529
- -------------------- DEPENDENCY DIVIDER --------------------
829
+ 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.
830
+
831
+ THIS SOFTWARE IS PROVIDED BY GARY COURT "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GARY COURT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
832
+
833
+ The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of Gary Court.
1530
834
 
1531
- Name: netmask
1532
- URL: https://github.com/rs/node-netmask
1533
- Version: 2.0.2
1534
- License: MIT
1535
835
 
1536
836
  -------------------- DEPENDENCY DIVIDER --------------------
1537
837
 
1538
- Name: @tootallnate/quickjs-emscripten
1539
- URL: https://github.com/justjake/quickjs-emscripten
1540
- Version: 0.23.0
838
+ Name: fast-json-stable-stringify
839
+ URL: https://github.com/epoberezkin/fast-json-stable-stringify
840
+ Version: 2.1.0
1541
841
  License: MIT
1542
842
 
1543
- MIT License
843
+ This software is released under the MIT license:
1544
844
 
1545
- quickjs-emscripten copyright (c) 2019 Jake Teton-Landis
845
+ Copyright (c) 2017 Evgeny Poberezkin
846
+ Copyright (c) 2013 James Halliday
1546
847
 
1547
- Permission is hereby granted, free of charge, to any person obtaining a copy
1548
- of this software and associated documentation files (the "Software"), to deal
1549
- in the Software without restriction, including without limitation the rights
1550
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1551
- copies of the Software, and to permit persons to whom the Software is
1552
- furnished to do so, subject to the following conditions:
848
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
849
+ this software and associated documentation files (the "Software"), to deal in
850
+ the Software without restriction, including without limitation the rights to
851
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
852
+ the Software, and to permit persons to whom the Software is furnished to do so,
853
+ subject to the following conditions:
1553
854
 
1554
855
  The above copyright notice and this permission notice shall be included in all
1555
856
  copies or substantial portions of the Software.
1556
857
 
1557
858
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1558
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1559
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1560
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1561
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1562
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1563
- SOFTWARE.
859
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
860
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
861
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
862
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
863
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1564
864
 
1565
865
 
1566
866
  -------------------- DEPENDENCY DIVIDER --------------------
1567
867
 
1568
- Name: progress
1569
- URL: git://github.com/visionmedia/node-progress
1570
- Version: 2.0.3
1571
- License: MIT
1572
-
1573
- (The MIT License)
1574
-
1575
- Copyright (c) 2017 TJ Holowaychuk <tj@vision-media.ca>
1576
-
1577
- Permission is hereby granted, free of charge, to any person obtaining
1578
- a copy of this software and associated documentation files (the
1579
- 'Software'), to deal in the Software without restriction, including
1580
- without limitation the rights to use, copy, modify, merge, publish,
1581
- distribute, sublicense, and/or sell copies of the Software, and to
1582
- permit persons to whom the Software is furnished to do so, subject to
1583
- the following conditions:
1584
-
1585
- The above copyright notice and this permission notice shall be
1586
- included in all copies or substantial portions of the Software.
868
+ Name: puppeteer-core
869
+ URL: https://github.com/puppeteer/puppeteer/tree/main/packages/puppeteer-core
870
+ Version: 25.0.4
871
+ License: Apache-2.0
1587
872
 
1588
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1589
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1590
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1591
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1592
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1593
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1594
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
873
+ -------------------- DEPENDENCY DIVIDER --------------------
1595
874
 
875
+ Name: @puppeteer/browsers
876
+ URL: https://github.com/puppeteer/puppeteer/tree/main/packages/browsers
877
+ Version: 3.0.3
878
+ License: Apache-2.0
1596
879
 
1597
880
  -------------------- DEPENDENCY DIVIDER --------------------
1598
881
 
@@ -3988,7 +3271,7 @@ SOFTWARE.
3988
3271
 
3989
3272
  Name: puppeteer-core
3990
3273
  URL: https://github.com/puppeteer/puppeteer/tree/main/packages/puppeteer-core
3991
- Version: 24.42.0
3274
+ Version: 24.43.0
3992
3275
  License: Apache-2.0
3993
3276
 
3994
3277
  -------------------- DEPENDENCY DIVIDER --------------------
@@ -4054,7 +3337,7 @@ SOFTWARE.
4054
3337
 
4055
3338
  Name: tldts-core
4056
3339
  URL: https://github.com/remusao/tldts#readme
4057
- Version: 7.0.29
3340
+ Version: 7.0.30
4058
3341
  License: MIT
4059
3342
 
4060
3343
  Copyright (c) 2017 Thomas Parisot, 2018 Rémi Berson
@@ -4076,7 +3359,7 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTH
4076
3359
 
4077
3360
  Name: tldts-icann
4078
3361
  URL: https://github.com/remusao/tldts#readme
4079
- Version: 7.0.29
3362
+ Version: 7.0.30
4080
3363
  License: MIT
4081
3364
 
4082
3365
  Copyright (c) 2017 Thomas Parisot, 2018 Rémi Berson
@@ -4118,7 +3401,7 @@ PERFORMANCE OF THIS SOFTWARE.
4118
3401
 
4119
3402
  Name: web-features
4120
3403
  URL: git+https://github.com/web-platform-dx/web-features.git
4121
- Version: 3.25.0
3404
+ Version: 3.26.0
4122
3405
  License: Apache-2.0
4123
3406
 
4124
3407
  Apache License