chrome-devtools-mcp 0.20.3 → 0.22.0
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.
- package/README.md +97 -20
- package/build/src/HeapSnapshotManager.js +94 -0
- package/build/src/McpContext.js +26 -49
- package/build/src/McpPage.js +16 -0
- package/build/src/McpResponse.js +220 -12
- package/build/src/PageCollector.js +14 -28
- package/build/src/WaitForHelper.js +31 -0
- package/build/src/bin/check-latest-version.js +25 -0
- package/build/src/bin/chrome-devtools-mcp-cli-options.js +28 -9
- package/build/src/bin/chrome-devtools-mcp-main.js +2 -0
- package/build/src/bin/chrome-devtools-mcp.js +1 -0
- package/build/src/bin/chrome-devtools.js +9 -3
- package/build/src/bin/cliDefinitions.js +15 -9
- package/build/src/daemon/client.js +1 -1
- package/build/src/daemon/daemon.js +2 -6
- package/build/src/daemon/utils.js +1 -0
- package/build/src/formatters/HeapSnapshotFormatter.js +38 -0
- package/build/src/formatters/NetworkFormatter.js +24 -7
- package/build/src/index.js +22 -1
- package/build/src/telemetry/ClearcutLogger.js +145 -6
- package/build/src/telemetry/flagUtils.js +46 -4
- package/build/src/telemetry/toolMetricsUtils.js +88 -0
- package/build/src/telemetry/types.js +5 -0
- package/build/src/telemetry/watchdog/ClearcutSender.js +4 -3
- package/build/src/third_party/THIRD_PARTY_NOTICES +1400 -483
- package/build/src/third_party/bundled-packages.json +6 -5
- package/build/src/third_party/devtools-formatter-worker.js +61 -66
- package/build/src/third_party/devtools-heap-snapshot-worker.js +9690 -0
- package/build/src/third_party/index.js +61622 -52803
- package/build/src/third_party/issue-descriptions/sharedDictionaryUseErrorCrossOriginNoCorsRequest.md +1 -0
- package/build/src/third_party/lighthouse-devtools-mcp-bundle.js +10589 -4647
- package/build/src/tools/categories.js +5 -0
- package/build/src/tools/console.js +42 -39
- package/build/src/tools/emulation.js +1 -1
- package/build/src/tools/extensions.js +5 -11
- package/build/src/tools/inPage.js +105 -0
- package/build/src/tools/input.js +18 -16
- package/build/src/tools/lighthouse.js +3 -3
- package/build/src/tools/memory.js +50 -5
- package/build/src/tools/network.js +2 -2
- package/build/src/tools/pages.js +14 -6
- package/build/src/tools/performance.js +1 -1
- package/build/src/tools/screencast.js +2 -1
- package/build/src/tools/screenshot.js +3 -3
- package/build/src/tools/script.js +22 -16
- package/build/src/tools/tools.js +4 -0
- package/build/src/tools/webmcp.js +63 -0
- package/build/src/utils/check-for-updates.js +73 -0
- package/build/src/utils/files.js +4 -0
- package/build/src/utils/id.js +15 -0
- package/build/src/version.js +1 -1
- package/package.json +13 -9
- package/build/src/third_party/issue-descriptions/sharedDictionaryUseErrorNoCorpCrossOriginNoCorsRequest.md +0 -3
- package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorNoCorpCossOriginNoCorsRequest.md +0 -3
- package/build/src/utils/ExtensionRegistry.js +0 -35
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Name: core-js
|
|
2
2
|
URL: https://core-js.io
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.49.0
|
|
4
4
|
License: MIT
|
|
5
5
|
|
|
6
6
|
Copyright (c) 2013–2025 Denis Pushkarev (zloirock.ru)
|
|
@@ -293,6 +293,30 @@ Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
|
293
293
|
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.
|
|
294
294
|
|
|
295
295
|
|
|
296
|
+
-------------------- DEPENDENCY DIVIDER --------------------
|
|
297
|
+
|
|
298
|
+
Name: semver
|
|
299
|
+
URL: git+https://github.com/npm/node-semver.git
|
|
300
|
+
Version: 7.7.4
|
|
301
|
+
License: ISC
|
|
302
|
+
|
|
303
|
+
The ISC License
|
|
304
|
+
|
|
305
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
306
|
+
|
|
307
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
308
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
309
|
+
copyright notice and this permission notice appear in all copies.
|
|
310
|
+
|
|
311
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
312
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
313
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
314
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
315
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
316
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
317
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
318
|
+
|
|
319
|
+
|
|
296
320
|
-------------------- DEPENDENCY DIVIDER --------------------
|
|
297
321
|
|
|
298
322
|
Name: debug
|
|
@@ -422,7 +446,7 @@ SOFTWARE.
|
|
|
422
446
|
|
|
423
447
|
Name: @modelcontextprotocol/sdk
|
|
424
448
|
URL: https://modelcontextprotocol.io
|
|
425
|
-
Version: 1.
|
|
449
|
+
Version: 1.29.0
|
|
426
450
|
License: MIT
|
|
427
451
|
|
|
428
452
|
MIT License
|
|
@@ -475,7 +499,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
475
499
|
|
|
476
500
|
Name: ajv
|
|
477
501
|
URL: https://ajv.js.org
|
|
478
|
-
Version: 8.
|
|
502
|
+
Version: 8.18.0
|
|
479
503
|
License: MIT
|
|
480
504
|
|
|
481
505
|
The MIT License (MIT)
|
|
@@ -766,41 +790,67 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
766
790
|
|
|
767
791
|
-------------------- DEPENDENCY DIVIDER --------------------
|
|
768
792
|
|
|
769
|
-
Name:
|
|
770
|
-
URL: https://github.com/
|
|
771
|
-
Version:
|
|
772
|
-
License:
|
|
793
|
+
Name: uri-js
|
|
794
|
+
URL: https://github.com/garycourt/uri-js
|
|
795
|
+
Version: 4.4.1
|
|
796
|
+
License: BSD-2-Clause
|
|
773
797
|
|
|
774
|
-
|
|
798
|
+
Copyright 2011 Gary Court. All rights reserved.
|
|
799
|
+
|
|
800
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
801
|
+
|
|
802
|
+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
803
|
+
|
|
804
|
+
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.
|
|
805
|
+
|
|
806
|
+
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.
|
|
807
|
+
|
|
808
|
+
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.
|
|
775
809
|
|
|
776
|
-
Name: @puppeteer/browsers
|
|
777
|
-
URL: https://github.com/puppeteer/puppeteer/tree/main/packages/browsers
|
|
778
|
-
Version: 2.13.0
|
|
779
|
-
License: Apache-2.0
|
|
780
810
|
|
|
781
811
|
-------------------- DEPENDENCY DIVIDER --------------------
|
|
782
812
|
|
|
783
|
-
Name:
|
|
784
|
-
URL:
|
|
785
|
-
Version:
|
|
786
|
-
License:
|
|
813
|
+
Name: fast-json-stable-stringify
|
|
814
|
+
URL: https://github.com/epoberezkin/fast-json-stable-stringify
|
|
815
|
+
Version: 2.1.0
|
|
816
|
+
License: MIT
|
|
787
817
|
|
|
788
|
-
|
|
818
|
+
This software is released under the MIT license:
|
|
789
819
|
|
|
790
|
-
Copyright (c)
|
|
820
|
+
Copyright (c) 2017 Evgeny Poberezkin
|
|
821
|
+
Copyright (c) 2013 James Halliday
|
|
791
822
|
|
|
792
|
-
Permission
|
|
793
|
-
|
|
794
|
-
|
|
823
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
824
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
825
|
+
the Software without restriction, including without limitation the rights to
|
|
826
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
827
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
828
|
+
subject to the following conditions:
|
|
795
829
|
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
830
|
+
The above copyright notice and this permission notice shall be included in all
|
|
831
|
+
copies or substantial portions of the Software.
|
|
832
|
+
|
|
833
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
834
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
835
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
836
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
837
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
838
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
-------------------- DEPENDENCY DIVIDER --------------------
|
|
842
|
+
|
|
843
|
+
Name: puppeteer-core
|
|
844
|
+
URL: https://github.com/puppeteer/puppeteer/tree/main/packages/puppeteer-core
|
|
845
|
+
Version: 24.42.0
|
|
846
|
+
License: Apache-2.0
|
|
803
847
|
|
|
848
|
+
-------------------- DEPENDENCY DIVIDER --------------------
|
|
849
|
+
|
|
850
|
+
Name: @puppeteer/browsers
|
|
851
|
+
URL: https://github.com/puppeteer/puppeteer/tree/main/packages/browsers
|
|
852
|
+
Version: 2.13.0
|
|
853
|
+
License: Apache-2.0
|
|
804
854
|
|
|
805
855
|
-------------------- DEPENDENCY DIVIDER --------------------
|
|
806
856
|
|
|
@@ -1187,7 +1237,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
1187
1237
|
|
|
1188
1238
|
Name: basic-ftp
|
|
1189
1239
|
URL: https://github.com/patrickjuchli/basic-ftp.git
|
|
1190
|
-
Version: 5.
|
|
1240
|
+
Version: 5.3.0
|
|
1191
1241
|
License: MIT
|
|
1192
1242
|
|
|
1193
1243
|
Copyright (c) 2019 Patrick Juchli
|
|
@@ -2353,21 +2403,111 @@ SOFTWARE.
|
|
|
2353
2403
|
|
|
2354
2404
|
-------------------- DEPENDENCY DIVIDER --------------------
|
|
2355
2405
|
|
|
2356
|
-
Name:
|
|
2406
|
+
Name: @formatjs/fast-memoize
|
|
2407
|
+
URL: https://github.com/formatjs/formatjs#readme
|
|
2408
|
+
Version: 2.2.0
|
|
2409
|
+
License: MIT
|
|
2410
|
+
|
|
2411
|
+
MIT License
|
|
2412
|
+
|
|
2413
|
+
Copyright (c) 2021 FormatJS
|
|
2414
|
+
|
|
2415
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2416
|
+
|
|
2417
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2418
|
+
|
|
2419
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2420
|
+
|
|
2421
|
+
|
|
2422
|
+
-------------------- DEPENDENCY DIVIDER --------------------
|
|
2423
|
+
|
|
2424
|
+
Name: @formatjs/icu-messageformat-parser
|
|
2425
|
+
URL: https://github.com/formatjs/formatjs.git
|
|
2426
|
+
Version: 2.6.2
|
|
2427
|
+
License: MIT
|
|
2428
|
+
|
|
2429
|
+
MIT License
|
|
2430
|
+
|
|
2431
|
+
Copyright (c) 2021 FormatJS
|
|
2432
|
+
|
|
2433
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2434
|
+
|
|
2435
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2436
|
+
|
|
2437
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2438
|
+
|
|
2439
|
+
|
|
2440
|
+
-------------------- DEPENDENCY DIVIDER --------------------
|
|
2441
|
+
|
|
2442
|
+
Name: @formatjs/icu-skeleton-parser
|
|
2443
|
+
URL: https://github.com/formatjs/formatjs.git
|
|
2444
|
+
Version: 1.6.2
|
|
2445
|
+
License: MIT
|
|
2446
|
+
|
|
2447
|
+
MIT License
|
|
2448
|
+
|
|
2449
|
+
Copyright (c) 2021 FormatJS
|
|
2450
|
+
|
|
2451
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2452
|
+
|
|
2453
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2454
|
+
|
|
2455
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2456
|
+
|
|
2457
|
+
|
|
2458
|
+
-------------------- DEPENDENCY DIVIDER --------------------
|
|
2459
|
+
|
|
2460
|
+
Name: @paulirish/trace_engine
|
|
2357
2461
|
URL: N/A
|
|
2358
|
-
Version:
|
|
2462
|
+
Version: 0.0.64
|
|
2463
|
+
License: BSD-3-Clause
|
|
2464
|
+
|
|
2465
|
+
// Copyright 2014 The Chromium Authors
|
|
2466
|
+
//
|
|
2467
|
+
// Redistribution and use in source and binary forms, with or without
|
|
2468
|
+
// modification, are permitted provided that the following conditions are
|
|
2469
|
+
// met:
|
|
2470
|
+
//
|
|
2471
|
+
// * Redistributions of source code must retain the above copyright
|
|
2472
|
+
// notice, this list of conditions and the following disclaimer.
|
|
2473
|
+
// * Redistributions in binary form must reproduce the above
|
|
2474
|
+
// copyright notice, this list of conditions and the following disclaimer
|
|
2475
|
+
// in the documentation and/or other materials provided with the
|
|
2476
|
+
// distribution.
|
|
2477
|
+
// * Neither the name of Google Inc. nor the names of its
|
|
2478
|
+
// contributors may be used to endorse or promote products derived from
|
|
2479
|
+
// this software without specific prior written permission.
|
|
2480
|
+
//
|
|
2481
|
+
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
2482
|
+
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
2483
|
+
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
2484
|
+
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
2485
|
+
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
2486
|
+
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
2487
|
+
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
2488
|
+
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
2489
|
+
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
2490
|
+
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
2491
|
+
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2492
|
+
|
|
2493
|
+
|
|
2494
|
+
-------------------- DEPENDENCY DIVIDER --------------------
|
|
2495
|
+
|
|
2496
|
+
Name: @sentry/node
|
|
2497
|
+
URL: https://github.com/getsentry/sentry-javascript/tree/master/packages/node
|
|
2498
|
+
Version: 9.28.1
|
|
2359
2499
|
License: MIT
|
|
2360
2500
|
|
|
2361
|
-
|
|
2501
|
+
MIT License
|
|
2362
2502
|
|
|
2363
|
-
Copyright (c)
|
|
2503
|
+
Copyright (c) 2023 Functional Software, Inc. dba Sentry
|
|
2364
2504
|
|
|
2365
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2505
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
2506
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
2507
|
+
the Software without restriction, including without limitation the rights to
|
|
2508
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
2509
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
2510
|
+
so, subject to the following conditions:
|
|
2371
2511
|
|
|
2372
2512
|
The above copyright notice and this permission notice shall be included in all
|
|
2373
2513
|
copies or substantial portions of the Software.
|
|
@@ -2383,385 +2523,647 @@ SOFTWARE.
|
|
|
2383
2523
|
|
|
2384
2524
|
-------------------- DEPENDENCY DIVIDER --------------------
|
|
2385
2525
|
|
|
2386
|
-
Name:
|
|
2387
|
-
URL:
|
|
2388
|
-
Version: 4.
|
|
2389
|
-
License:
|
|
2526
|
+
Name: axe-core
|
|
2527
|
+
URL: https://www.deque.com/axe/
|
|
2528
|
+
Version: 4.11.2
|
|
2529
|
+
License: MPL-2.0
|
|
2390
2530
|
|
|
2391
|
-
|
|
2531
|
+
Mozilla Public License, version 2.0
|
|
2392
2532
|
|
|
2393
|
-
|
|
2394
|
-
Copyright (c) 2018-2021 Josh Junon
|
|
2533
|
+
1. Definitions
|
|
2395
2534
|
|
|
2396
|
-
|
|
2397
|
-
and associated documentation files (the 'Software'), to deal in the Software without restriction,
|
|
2398
|
-
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
2399
|
-
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
2400
|
-
subject to the following conditions:
|
|
2535
|
+
1.1. "Contributor"
|
|
2401
2536
|
|
|
2402
|
-
|
|
2403
|
-
|
|
2537
|
+
means each individual or legal entity that creates, contributes to the
|
|
2538
|
+
creation of, or owns Covered Software.
|
|
2404
2539
|
|
|
2405
|
-
|
|
2406
|
-
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2407
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
2408
|
-
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2409
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2540
|
+
1.2. "Contributor Version"
|
|
2410
2541
|
|
|
2542
|
+
means the combination of the Contributions of others (if any) used by a
|
|
2543
|
+
Contributor and that particular Contributor's Contribution.
|
|
2411
2544
|
|
|
2545
|
+
1.3. "Contribution"
|
|
2412
2546
|
|
|
2413
|
-
|
|
2547
|
+
means Covered Software of a particular Contributor.
|
|
2414
2548
|
|
|
2415
|
-
|
|
2416
|
-
URL: N/A
|
|
2417
|
-
Version: 1.2.2
|
|
2418
|
-
License: Apache-2.0
|
|
2549
|
+
1.4. "Covered Software"
|
|
2419
2550
|
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2551
|
+
means Source Code Form to which the initial Contributor has attached the
|
|
2552
|
+
notice in Exhibit A, the Executable Form of such Source Code Form, and
|
|
2553
|
+
Modifications of such Source Code Form, in each case including portions
|
|
2554
|
+
thereof.
|
|
2423
2555
|
|
|
2424
|
-
|
|
2556
|
+
1.5. "Incompatible With Secondary Licenses"
|
|
2557
|
+
means
|
|
2425
2558
|
|
|
2426
|
-
|
|
2559
|
+
a. that the initial Contributor has attached the notice described in
|
|
2560
|
+
Exhibit B to the Covered Software; or
|
|
2427
2561
|
|
|
2428
|
-
|
|
2429
|
-
|
|
2562
|
+
b. that the Covered Software was made available under the terms of
|
|
2563
|
+
version 1.1 or earlier of the License, but not also under the terms of
|
|
2564
|
+
a Secondary License.
|
|
2430
2565
|
|
|
2431
|
-
|
|
2432
|
-
copyright owner that is granting the License.
|
|
2566
|
+
1.6. "Executable Form"
|
|
2433
2567
|
|
|
2434
|
-
|
|
2435
|
-
entities that control, are controlled by, or are under common control with
|
|
2436
|
-
that entity. For the purposes of this definition, "control" means (i) the
|
|
2437
|
-
power, direct or indirect, to cause the direction or management of such
|
|
2438
|
-
entity, whether by contract or otherwise, or (ii) ownership of
|
|
2439
|
-
fifty percent (50%) or more of the outstanding shares, or (iii) beneficial
|
|
2440
|
-
ownership of such entity.
|
|
2568
|
+
means any form of the work other than Source Code Form.
|
|
2441
2569
|
|
|
2442
|
-
|
|
2443
|
-
permissions granted by this License.
|
|
2570
|
+
1.7. "Larger Work"
|
|
2444
2571
|
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
and configuration files.
|
|
2572
|
+
means a work that combines Covered Software with other material, in a
|
|
2573
|
+
separate file or files, that is not Covered Software.
|
|
2448
2574
|
|
|
2449
|
-
|
|
2450
|
-
or translation of a Source form, including but not limited to compiled
|
|
2451
|
-
object code, generated documentation, and conversions to
|
|
2452
|
-
other media types.
|
|
2575
|
+
1.8. "License"
|
|
2453
2576
|
|
|
2454
|
-
|
|
2455
|
-
form, made available under the License, as indicated by a copyright notice
|
|
2456
|
-
that is included in or attached to the work (an example is provided in the
|
|
2457
|
-
Appendix below).
|
|
2577
|
+
means this document.
|
|
2458
2578
|
|
|
2459
|
-
|
|
2460
|
-
that is based on (or derived from) the Work and for which the editorial
|
|
2461
|
-
revisions, annotations, elaborations, or other modifications represent,
|
|
2462
|
-
as a whole, an original work of authorship. For the purposes of this
|
|
2463
|
-
License, Derivative Works shall not include works that remain separable
|
|
2464
|
-
from, or merely link (or bind by name) to the interfaces of, the Work and
|
|
2465
|
-
Derivative Works thereof.
|
|
2579
|
+
1.9. "Licensable"
|
|
2466
2580
|
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
inclusion in the Work by the copyright owner or by an individual or
|
|
2471
|
-
Legal Entity authorized to submit on behalf of the copyright owner.
|
|
2472
|
-
For the purposes of this definition, "submitted" means any form of
|
|
2473
|
-
electronic, verbal, or written communication sent to the Licensor or its
|
|
2474
|
-
representatives, including but not limited to communication on electronic
|
|
2475
|
-
mailing lists, source code control systems, and issue tracking systems
|
|
2476
|
-
that are managed by, or on behalf of, the Licensor for the purpose of
|
|
2477
|
-
discussing and improving the Work, but excluding communication that is
|
|
2478
|
-
conspicuously marked or otherwise designated in writing by the copyright
|
|
2479
|
-
owner as "Not a Contribution."
|
|
2480
|
-
|
|
2481
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity on
|
|
2482
|
-
behalf of whom a Contribution has been received by Licensor and
|
|
2483
|
-
subsequently incorporated within the Work.
|
|
2484
|
-
|
|
2485
|
-
2. Grant of Copyright License.
|
|
2486
|
-
|
|
2487
|
-
Subject to the terms and conditions of this License, each Contributor
|
|
2488
|
-
hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,
|
|
2489
|
-
royalty-free, irrevocable copyright license to reproduce, prepare
|
|
2490
|
-
Derivative Works of, publicly display, publicly perform, sublicense,
|
|
2491
|
-
and distribute the Work and such Derivative Works in
|
|
2492
|
-
Source or Object form.
|
|
2581
|
+
means having the right to grant, to the maximum extent possible, whether
|
|
2582
|
+
at the time of the initial grant or subsequently, any and all of the
|
|
2583
|
+
rights conveyed by this License.
|
|
2493
2584
|
|
|
2494
|
-
|
|
2585
|
+
1.10. "Modifications"
|
|
2495
2586
|
|
|
2496
|
-
|
|
2497
|
-
hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,
|
|
2498
|
-
royalty-free, irrevocable (except as stated in this section) patent
|
|
2499
|
-
license to make, have made, use, offer to sell, sell, import, and
|
|
2500
|
-
otherwise transfer the Work, where such license applies only to those
|
|
2501
|
-
patent claims licensable by such Contributor that are necessarily
|
|
2502
|
-
infringed by their Contribution(s) alone or by combination of their
|
|
2503
|
-
Contribution(s) with the Work to which such Contribution(s) was submitted.
|
|
2504
|
-
If You institute patent litigation against any entity (including a
|
|
2505
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work or a
|
|
2506
|
-
Contribution incorporated within the Work constitutes direct or
|
|
2507
|
-
contributory patent infringement, then any patent licenses granted to
|
|
2508
|
-
You under this License for that Work shall terminate as of the date such
|
|
2509
|
-
litigation is filed.
|
|
2587
|
+
means any of the following:
|
|
2510
2588
|
|
|
2511
|
-
|
|
2589
|
+
a. any file in Source Code Form that results from an addition to,
|
|
2590
|
+
deletion from, or modification of the contents of Covered Software; or
|
|
2512
2591
|
|
|
2513
|
-
|
|
2514
|
-
thereof in any medium, with or without modifications, and in Source or
|
|
2515
|
-
Object form, provided that You meet the following conditions:
|
|
2592
|
+
b. any new file in Source Code Form that contains any Covered Software.
|
|
2516
2593
|
|
|
2517
|
-
|
|
2518
|
-
copy of this License; and
|
|
2594
|
+
1.11. "Patent Claims" of a Contributor
|
|
2519
2595
|
|
|
2520
|
-
|
|
2521
|
-
|
|
2596
|
+
means any patent claim(s), including without limitation, method,
|
|
2597
|
+
process, and apparatus claims, in any patent Licensable by such
|
|
2598
|
+
Contributor that would be infringed, but for the grant of the License,
|
|
2599
|
+
by the making, using, selling, offering for sale, having made, import,
|
|
2600
|
+
or transfer of either its Contributions or its Contributor Version.
|
|
2522
2601
|
|
|
2523
|
-
|
|
2524
|
-
distribute, all copyright, patent, trademark, and attribution notices from
|
|
2525
|
-
the Source form of the Work, excluding those notices that do not pertain
|
|
2526
|
-
to any part of the Derivative Works; and
|
|
2602
|
+
1.12. "Secondary License"
|
|
2527
2603
|
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
those notices that do not pertain to any part of the Derivative Works,
|
|
2532
|
-
in at least one of the following places: within a NOTICE text file
|
|
2533
|
-
distributed as part of the Derivative Works; within the Source form or
|
|
2534
|
-
documentation, if provided along with the Derivative Works; or, within a
|
|
2535
|
-
display generated by the Derivative Works, if and wherever such
|
|
2536
|
-
third-party notices normally appear. The contents of the NOTICE file are
|
|
2537
|
-
for informational purposes only and do not modify the License.
|
|
2538
|
-
You may add Your own attribution notices within Derivative Works that You
|
|
2539
|
-
distribute, alongside or as an addendum to the NOTICE text from the Work,
|
|
2540
|
-
provided that such additional attribution notices cannot be construed
|
|
2541
|
-
as modifying the License.
|
|
2604
|
+
means either the GNU General Public License, Version 2.0, the GNU Lesser
|
|
2605
|
+
General Public License, Version 2.1, the GNU Affero General Public
|
|
2606
|
+
License, Version 3.0, or any later versions of those licenses.
|
|
2542
2607
|
|
|
2543
|
-
|
|
2544
|
-
provide additional or different license terms and conditions for use,
|
|
2545
|
-
reproduction, or distribution of Your modifications, or for any such
|
|
2546
|
-
Derivative Works as a whole, provided Your use, reproduction, and
|
|
2547
|
-
distribution of the Work otherwise complies with the conditions
|
|
2548
|
-
stated in this License.
|
|
2608
|
+
1.13. "Source Code Form"
|
|
2549
2609
|
|
|
2550
|
-
|
|
2610
|
+
means the form of the work preferred for making modifications.
|
|
2551
2611
|
|
|
2552
|
-
|
|
2553
|
-
submitted for inclusion in the Work by You to the Licensor shall be under
|
|
2554
|
-
the terms and conditions of this License, without any additional
|
|
2555
|
-
terms or conditions. Notwithstanding the above, nothing herein shall
|
|
2556
|
-
supersede or modify the terms of any separate license agreement you may
|
|
2557
|
-
have executed with Licensor regarding such Contributions.
|
|
2612
|
+
1.14. "You" (or "Your")
|
|
2558
2613
|
|
|
2559
|
-
|
|
2614
|
+
means an individual or a legal entity exercising rights under this
|
|
2615
|
+
License. For legal entities, "You" includes any entity that controls, is
|
|
2616
|
+
controlled by, or is under common control with You. For purposes of this
|
|
2617
|
+
definition, "control" means (a) the power, direct or indirect, to cause
|
|
2618
|
+
the direction or management of such entity, whether by contract or
|
|
2619
|
+
otherwise, or (b) ownership of more than fifty percent (50%) of the
|
|
2620
|
+
outstanding shares or beneficial ownership of such entity.
|
|
2560
2621
|
|
|
2561
|
-
This License does not grant permission to use the trade names, trademarks,
|
|
2562
|
-
service marks, or product names of the Licensor, except as required for
|
|
2563
|
-
reasonable and customary use in describing the origin of the Work and
|
|
2564
|
-
reproducing the content of the NOTICE file.
|
|
2565
2622
|
|
|
2566
|
-
|
|
2623
|
+
2. License Grants and Conditions
|
|
2567
2624
|
|
|
2568
|
-
|
|
2569
|
-
provides the Work (and each Contributor provides its Contributions)
|
|
2570
|
-
on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
|
2571
|
-
either express or implied, including, without limitation, any warranties
|
|
2572
|
-
or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS
|
|
2573
|
-
FOR A PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
2574
|
-
appropriateness of using or redistributing the Work and assume any risks
|
|
2575
|
-
associated with Your exercise of permissions under this License.
|
|
2625
|
+
2.1. Grants
|
|
2576
2626
|
|
|
2577
|
-
|
|
2627
|
+
Each Contributor hereby grants You a world-wide, royalty-free,
|
|
2628
|
+
non-exclusive license:
|
|
2578
2629
|
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
damages of any character arising as a result of this License or out of
|
|
2585
|
-
the use or inability to use the Work (including but not limited to damages
|
|
2586
|
-
for loss of goodwill, work stoppage, computer failure or malfunction,
|
|
2587
|
-
or any and all other commercial damages or losses), even if such
|
|
2588
|
-
Contributor has been advised of the possibility of such damages.
|
|
2630
|
+
a. under intellectual property rights (other than patent or trademark)
|
|
2631
|
+
Licensable by such Contributor to use, reproduce, make available,
|
|
2632
|
+
modify, display, perform, distribute, and otherwise exploit its
|
|
2633
|
+
Contributions, either on an unmodified basis, with Modifications, or
|
|
2634
|
+
as part of a Larger Work; and
|
|
2589
2635
|
|
|
2590
|
-
|
|
2636
|
+
b. under Patent Claims of such Contributor to make, use, sell, offer for
|
|
2637
|
+
sale, have made, import, and otherwise transfer either its
|
|
2638
|
+
Contributions or its Contributor Version.
|
|
2591
2639
|
|
|
2592
|
-
|
|
2593
|
-
to offer, and charge a fee for, acceptance of support, warranty,
|
|
2594
|
-
indemnity, or other liability obligations and/or rights consistent with
|
|
2595
|
-
this License. However, in accepting such obligations, You may act only
|
|
2596
|
-
on Your own behalf and on Your sole responsibility, not on behalf of any
|
|
2597
|
-
other Contributor, and only if You agree to indemnify, defend, and hold
|
|
2598
|
-
each Contributor harmless for any liability incurred by, or claims
|
|
2599
|
-
asserted against, such Contributor by reason of your accepting any such
|
|
2600
|
-
warranty or additional liability.
|
|
2640
|
+
2.2. Effective Date
|
|
2601
2641
|
|
|
2602
|
-
|
|
2642
|
+
The licenses granted in Section 2.1 with respect to any Contribution
|
|
2643
|
+
become effective for each Contribution on the date the Contributor first
|
|
2644
|
+
distributes such Contribution.
|
|
2603
2645
|
|
|
2604
|
-
|
|
2646
|
+
2.3. Limitations on Grant Scope
|
|
2605
2647
|
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
on the same "printed page" as the copyright notice for easier
|
|
2612
|
-
identification within third-party archives.
|
|
2648
|
+
The licenses granted in this Section 2 are the only rights granted under
|
|
2649
|
+
this License. No additional rights or licenses will be implied from the
|
|
2650
|
+
distribution or licensing of Covered Software under this License.
|
|
2651
|
+
Notwithstanding Section 2.1(b) above, no patent license is granted by a
|
|
2652
|
+
Contributor:
|
|
2613
2653
|
|
|
2614
|
-
|
|
2654
|
+
a. for any code that a Contributor has removed from Covered Software; or
|
|
2615
2655
|
|
|
2656
|
+
b. for infringements caused by: (i) Your and any other third party's
|
|
2657
|
+
modifications of Covered Software, or (ii) the combination of its
|
|
2658
|
+
Contributions with other software (except as part of its Contributor
|
|
2659
|
+
Version); or
|
|
2616
2660
|
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
You may obtain a copy of the License at
|
|
2661
|
+
c. under Patent Claims infringed by Covered Software in the absence of
|
|
2662
|
+
its Contributions.
|
|
2620
2663
|
|
|
2621
|
-
|
|
2664
|
+
This License does not grant any rights in the trademarks, service marks,
|
|
2665
|
+
or logos of any Contributor (except as may be necessary to comply with
|
|
2666
|
+
the notice requirements in Section 3.4).
|
|
2622
2667
|
|
|
2623
|
-
|
|
2624
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
2625
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
2626
|
-
or implied. See the License for the specific language governing
|
|
2627
|
-
permissions and limitations under the License.
|
|
2668
|
+
2.4. Subsequent Licenses
|
|
2628
2669
|
|
|
2670
|
+
No Contributor makes additional grants as a result of Your choice to
|
|
2671
|
+
distribute the Covered Software under a subsequent version of this
|
|
2672
|
+
License (see Section 10.2) or under the terms of a Secondary License (if
|
|
2673
|
+
permitted under the terms of Section 3.3).
|
|
2629
2674
|
|
|
2675
|
+
2.5. Representation
|
|
2630
2676
|
|
|
2631
|
-
|
|
2677
|
+
Each Contributor represents that the Contributor believes its
|
|
2678
|
+
Contributions are its original creation(s) or it has sufficient rights to
|
|
2679
|
+
grant the rights to its Contributions conveyed by this License.
|
|
2632
2680
|
|
|
2633
|
-
|
|
2634
|
-
URL: N/A
|
|
2635
|
-
Version: 4.17.21
|
|
2636
|
-
License: MIT
|
|
2681
|
+
2.6. Fair Use
|
|
2637
2682
|
|
|
2638
|
-
|
|
2683
|
+
This License is not intended to limit any rights You have under
|
|
2684
|
+
applicable copyright doctrines of fair use, fair dealing, or other
|
|
2685
|
+
equivalents.
|
|
2639
2686
|
|
|
2640
|
-
|
|
2641
|
-
DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
|
|
2687
|
+
2.7. Conditions
|
|
2642
2688
|
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
available at https://github.com/lodash/lodash
|
|
2689
|
+
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in
|
|
2690
|
+
Section 2.1.
|
|
2646
2691
|
|
|
2647
|
-
The following license applies to all parts of this software except as
|
|
2648
|
-
documented below:
|
|
2649
2692
|
|
|
2650
|
-
|
|
2693
|
+
3. Responsibilities
|
|
2651
2694
|
|
|
2652
|
-
|
|
2653
|
-
a copy of this software and associated documentation files (the
|
|
2654
|
-
"Software"), to deal in the Software without restriction, including
|
|
2655
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
2656
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2657
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
2658
|
-
the following conditions:
|
|
2695
|
+
3.1. Distribution of Source Form
|
|
2659
2696
|
|
|
2660
|
-
|
|
2661
|
-
|
|
2697
|
+
All distribution of Covered Software in Source Code Form, including any
|
|
2698
|
+
Modifications that You create or to which You contribute, must be under
|
|
2699
|
+
the terms of this License. You must inform recipients that the Source
|
|
2700
|
+
Code Form of the Covered Software is governed by the terms of this
|
|
2701
|
+
License, and how they can obtain a copy of this License. You may not
|
|
2702
|
+
attempt to alter or restrict the recipients' rights in the Source Code
|
|
2703
|
+
Form.
|
|
2704
|
+
|
|
2705
|
+
3.2. Distribution of Executable Form
|
|
2706
|
+
|
|
2707
|
+
If You distribute Covered Software in Executable Form then:
|
|
2708
|
+
|
|
2709
|
+
a. such Covered Software must also be made available in Source Code Form,
|
|
2710
|
+
as described in Section 3.1, and You must inform recipients of the
|
|
2711
|
+
Executable Form how they can obtain a copy of such Source Code Form by
|
|
2712
|
+
reasonable means in a timely manner, at a charge no more than the cost
|
|
2713
|
+
of distribution to the recipient; and
|
|
2714
|
+
|
|
2715
|
+
b. You may distribute such Executable Form under the terms of this
|
|
2716
|
+
License, or sublicense it under different terms, provided that the
|
|
2717
|
+
license for the Executable Form does not attempt to limit or alter the
|
|
2718
|
+
recipients' rights in the Source Code Form under this License.
|
|
2719
|
+
|
|
2720
|
+
3.3. Distribution of a Larger Work
|
|
2721
|
+
|
|
2722
|
+
You may create and distribute a Larger Work under terms of Your choice,
|
|
2723
|
+
provided that You also comply with the requirements of this License for
|
|
2724
|
+
the Covered Software. If the Larger Work is a combination of Covered
|
|
2725
|
+
Software with a work governed by one or more Secondary Licenses, and the
|
|
2726
|
+
Covered Software is not Incompatible With Secondary Licenses, this
|
|
2727
|
+
License permits You to additionally distribute such Covered Software
|
|
2728
|
+
under the terms of such Secondary License(s), so that the recipient of
|
|
2729
|
+
the Larger Work may, at their option, further distribute the Covered
|
|
2730
|
+
Software under the terms of either this License or such Secondary
|
|
2731
|
+
License(s).
|
|
2732
|
+
|
|
2733
|
+
3.4. Notices
|
|
2734
|
+
|
|
2735
|
+
You may not remove or alter the substance of any license notices
|
|
2736
|
+
(including copyright notices, patent notices, disclaimers of warranty, or
|
|
2737
|
+
limitations of liability) contained within the Source Code Form of the
|
|
2738
|
+
Covered Software, except that You may alter any license notices to the
|
|
2739
|
+
extent required to remedy known factual inaccuracies.
|
|
2740
|
+
|
|
2741
|
+
3.5. Application of Additional Terms
|
|
2742
|
+
|
|
2743
|
+
You may choose to offer, and to charge a fee for, warranty, support,
|
|
2744
|
+
indemnity or liability obligations to one or more recipients of Covered
|
|
2745
|
+
Software. However, You may do so only on Your own behalf, and not on
|
|
2746
|
+
behalf of any Contributor. You must make it absolutely clear that any
|
|
2747
|
+
such warranty, support, indemnity, or liability obligation is offered by
|
|
2748
|
+
You alone, and You hereby agree to indemnify every Contributor for any
|
|
2749
|
+
liability incurred by such Contributor as a result of warranty, support,
|
|
2750
|
+
indemnity or liability terms You offer. You may include additional
|
|
2751
|
+
disclaimers of warranty and limitations of liability specific to any
|
|
2752
|
+
jurisdiction.
|
|
2753
|
+
|
|
2754
|
+
4. Inability to Comply Due to Statute or Regulation
|
|
2755
|
+
|
|
2756
|
+
If it is impossible for You to comply with any of the terms of this License
|
|
2757
|
+
with respect to some or all of the Covered Software due to statute,
|
|
2758
|
+
judicial order, or regulation then You must: (a) comply with the terms of
|
|
2759
|
+
this License to the maximum extent possible; and (b) describe the
|
|
2760
|
+
limitations and the code they affect. Such description must be placed in a
|
|
2761
|
+
text file included with all distributions of the Covered Software under
|
|
2762
|
+
this License. Except to the extent prohibited by statute or regulation,
|
|
2763
|
+
such description must be sufficiently detailed for a recipient of ordinary
|
|
2764
|
+
skill to be able to understand it.
|
|
2765
|
+
|
|
2766
|
+
5. Termination
|
|
2767
|
+
|
|
2768
|
+
5.1. The rights granted under this License will terminate automatically if You
|
|
2769
|
+
fail to comply with any of its terms. However, if You become compliant,
|
|
2770
|
+
then the rights granted under this License from a particular Contributor
|
|
2771
|
+
are reinstated (a) provisionally, unless and until such Contributor
|
|
2772
|
+
explicitly and finally terminates Your grants, and (b) on an ongoing
|
|
2773
|
+
basis, if such Contributor fails to notify You of the non-compliance by
|
|
2774
|
+
some reasonable means prior to 60 days after You have come back into
|
|
2775
|
+
compliance. Moreover, Your grants from a particular Contributor are
|
|
2776
|
+
reinstated on an ongoing basis if such Contributor notifies You of the
|
|
2777
|
+
non-compliance by some reasonable means, this is the first time You have
|
|
2778
|
+
received notice of non-compliance with this License from such
|
|
2779
|
+
Contributor, and You become compliant prior to 30 days after Your receipt
|
|
2780
|
+
of the notice.
|
|
2781
|
+
|
|
2782
|
+
5.2. If You initiate litigation against any entity by asserting a patent
|
|
2783
|
+
infringement claim (excluding declaratory judgment actions,
|
|
2784
|
+
counter-claims, and cross-claims) alleging that a Contributor Version
|
|
2785
|
+
directly or indirectly infringes any patent, then the rights granted to
|
|
2786
|
+
You by any and all Contributors for the Covered Software under Section
|
|
2787
|
+
2.1 of this License shall terminate.
|
|
2788
|
+
|
|
2789
|
+
5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user
|
|
2790
|
+
license agreements (excluding distributors and resellers) which have been
|
|
2791
|
+
validly granted by You or Your distributors under this License prior to
|
|
2792
|
+
termination shall survive termination.
|
|
2793
|
+
|
|
2794
|
+
6. Disclaimer of Warranty
|
|
2795
|
+
|
|
2796
|
+
Covered Software is provided under this License on an "as is" basis,
|
|
2797
|
+
without warranty of any kind, either expressed, implied, or statutory,
|
|
2798
|
+
including, without limitation, warranties that the Covered Software is free
|
|
2799
|
+
of defects, merchantable, fit for a particular purpose or non-infringing.
|
|
2800
|
+
The entire risk as to the quality and performance of the Covered Software
|
|
2801
|
+
is with You. Should any Covered Software prove defective in any respect,
|
|
2802
|
+
You (not any Contributor) assume the cost of any necessary servicing,
|
|
2803
|
+
repair, or correction. This disclaimer of warranty constitutes an essential
|
|
2804
|
+
part of this License. No use of any Covered Software is authorized under
|
|
2805
|
+
this License except under this disclaimer.
|
|
2806
|
+
|
|
2807
|
+
7. Limitation of Liability
|
|
2808
|
+
|
|
2809
|
+
Under no circumstances and under no legal theory, whether tort (including
|
|
2810
|
+
negligence), contract, or otherwise, shall any Contributor, or anyone who
|
|
2811
|
+
distributes Covered Software as permitted above, be liable to You for any
|
|
2812
|
+
direct, indirect, special, incidental, or consequential damages of any
|
|
2813
|
+
character including, without limitation, damages for lost profits, loss of
|
|
2814
|
+
goodwill, work stoppage, computer failure or malfunction, or any and all
|
|
2815
|
+
other commercial damages or losses, even if such party shall have been
|
|
2816
|
+
informed of the possibility of such damages. This limitation of liability
|
|
2817
|
+
shall not apply to liability for death or personal injury resulting from
|
|
2818
|
+
such party's negligence to the extent applicable law prohibits such
|
|
2819
|
+
limitation. Some jurisdictions do not allow the exclusion or limitation of
|
|
2820
|
+
incidental or consequential damages, so this exclusion and limitation may
|
|
2821
|
+
not apply to You.
|
|
2822
|
+
|
|
2823
|
+
8. Litigation
|
|
2824
|
+
|
|
2825
|
+
Any litigation relating to this License may be brought only in the courts
|
|
2826
|
+
of a jurisdiction where the defendant maintains its principal place of
|
|
2827
|
+
business and such litigation shall be governed by laws of that
|
|
2828
|
+
jurisdiction, without reference to its conflict-of-law provisions. Nothing
|
|
2829
|
+
in this Section shall prevent a party's ability to bring cross-claims or
|
|
2830
|
+
counter-claims.
|
|
2831
|
+
|
|
2832
|
+
9. Miscellaneous
|
|
2833
|
+
|
|
2834
|
+
This License represents the complete agreement concerning the subject
|
|
2835
|
+
matter hereof. If any provision of this License is held to be
|
|
2836
|
+
unenforceable, such provision shall be reformed only to the extent
|
|
2837
|
+
necessary to make it enforceable. Any law or regulation which provides that
|
|
2838
|
+
the language of a contract shall be construed against the drafter shall not
|
|
2839
|
+
be used to construe this License against a Contributor.
|
|
2840
|
+
|
|
2841
|
+
|
|
2842
|
+
10. Versions of the License
|
|
2843
|
+
|
|
2844
|
+
10.1. New Versions
|
|
2845
|
+
|
|
2846
|
+
Mozilla Foundation is the license steward. Except as provided in Section
|
|
2847
|
+
10.3, no one other than the license steward has the right to modify or
|
|
2848
|
+
publish new versions of this License. Each version will be given a
|
|
2849
|
+
distinguishing version number.
|
|
2850
|
+
|
|
2851
|
+
10.2. Effect of New Versions
|
|
2852
|
+
|
|
2853
|
+
You may distribute the Covered Software under the terms of the version
|
|
2854
|
+
of the License under which You originally received the Covered Software,
|
|
2855
|
+
or under the terms of any subsequent version published by the license
|
|
2856
|
+
steward.
|
|
2857
|
+
|
|
2858
|
+
10.3. Modified Versions
|
|
2859
|
+
|
|
2860
|
+
If you create software not governed by this License, and you want to
|
|
2861
|
+
create a new license for such software, you may create and use a
|
|
2862
|
+
modified version of this License if you rename the license and remove
|
|
2863
|
+
any references to the name of the license steward (except to note that
|
|
2864
|
+
such modified license differs from this License).
|
|
2865
|
+
|
|
2866
|
+
10.4. Distributing Source Code Form that is Incompatible With Secondary
|
|
2867
|
+
Licenses If You choose to distribute Source Code Form that is
|
|
2868
|
+
Incompatible With Secondary Licenses under the terms of this version of
|
|
2869
|
+
the License, the notice described in Exhibit B of this License must be
|
|
2870
|
+
attached.
|
|
2871
|
+
|
|
2872
|
+
Exhibit A - Source Code Form License Notice
|
|
2873
|
+
|
|
2874
|
+
This Source Code Form is subject to the
|
|
2875
|
+
terms of the Mozilla Public License, v.
|
|
2876
|
+
2.0. If a copy of the MPL was not
|
|
2877
|
+
distributed with this file, You can
|
|
2878
|
+
obtain one at
|
|
2879
|
+
http://mozilla.org/MPL/2.0/.
|
|
2880
|
+
|
|
2881
|
+
If it is not possible or desirable to put the notice in a particular file,
|
|
2882
|
+
then You may include the notice in a location (such as a LICENSE file in a
|
|
2883
|
+
relevant directory) where a recipient would be likely to look for such a
|
|
2884
|
+
notice.
|
|
2885
|
+
|
|
2886
|
+
You may add additional accurate notices of copyright ownership.
|
|
2887
|
+
|
|
2888
|
+
Exhibit B - "Incompatible With Secondary Licenses" Notice
|
|
2889
|
+
|
|
2890
|
+
This Source Code Form is "Incompatible
|
|
2891
|
+
With Secondary Licenses", as defined by
|
|
2892
|
+
the Mozilla Public License, v. 2.0.
|
|
2662
2893
|
|
|
2663
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
2664
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2665
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
2666
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
2667
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
2668
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
2669
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2670
2894
|
|
|
2671
|
-
|
|
2895
|
+
-------------------- DEPENDENCY DIVIDER --------------------
|
|
2672
2896
|
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
|
|
2897
|
+
Name: csp_evaluator
|
|
2898
|
+
URL: https://csp-evaluator.withgoogle.com/
|
|
2899
|
+
Version: 1.1.5
|
|
2900
|
+
License: Apache-2.0
|
|
2676
2901
|
|
|
2677
|
-
CC0: http://creativecommons.org/publicdomain/zero/1.0/
|
|
2678
2902
|
|
|
2679
|
-
|
|
2903
|
+
Apache License
|
|
2904
|
+
Version 2.0, January 2004
|
|
2905
|
+
http://www.apache.org/licenses/
|
|
2680
2906
|
|
|
2681
|
-
|
|
2682
|
-
maintained libraries used by this software which have their own
|
|
2683
|
-
licenses; we recommend you read them, as their terms may differ from the
|
|
2684
|
-
terms above.
|
|
2907
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
2685
2908
|
|
|
2909
|
+
1. Definitions.
|
|
2686
2910
|
|
|
2687
|
-
|
|
2911
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
2912
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
2688
2913
|
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
Version: 2.6.2
|
|
2692
|
-
License: 0BSD
|
|
2914
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
2915
|
+
the copyright owner that is granting the License.
|
|
2693
2916
|
|
|
2694
|
-
|
|
2917
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
2918
|
+
other entities that control, are controlled by, or are under common
|
|
2919
|
+
control with that entity. For the purposes of this definition,
|
|
2920
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
2921
|
+
direction or management of such entity, whether by contract or
|
|
2922
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
2923
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
2695
2924
|
|
|
2696
|
-
|
|
2697
|
-
|
|
2925
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
2926
|
+
exercising permissions granted by this License.
|
|
2698
2927
|
|
|
2699
|
-
|
|
2700
|
-
|
|
2701
|
-
|
|
2702
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
2703
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
2704
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
2705
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
2928
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
2929
|
+
including but not limited to software source code, documentation
|
|
2930
|
+
source, and configuration files.
|
|
2706
2931
|
|
|
2707
|
-
|
|
2932
|
+
"Object" form shall mean any form resulting from mechanical
|
|
2933
|
+
transformation or translation of a Source form, including but
|
|
2934
|
+
not limited to compiled object code, generated documentation,
|
|
2935
|
+
and conversions to other media types.
|
|
2708
2936
|
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2937
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
2938
|
+
Object form, made available under the License, as indicated by a
|
|
2939
|
+
copyright notice that is included in or attached to the work
|
|
2940
|
+
(an example is provided in the Appendix below).
|
|
2713
2941
|
|
|
2714
|
-
|
|
2942
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
2943
|
+
form, that is based on (or derived from) the Work and for which the
|
|
2944
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
2945
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
2946
|
+
of this License, Derivative Works shall not include works that remain
|
|
2947
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
2948
|
+
the Work and Derivative Works thereof.
|
|
2715
2949
|
|
|
2716
|
-
|
|
2950
|
+
"Contribution" shall mean any work of authorship, including
|
|
2951
|
+
the original version of the Work and any modifications or additions
|
|
2952
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
2953
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
2954
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
2955
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
2956
|
+
means any form of electronic, verbal, or written communication sent
|
|
2957
|
+
to the Licensor or its representatives, including but not limited to
|
|
2958
|
+
communication on electronic mailing lists, source code control systems,
|
|
2959
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
2960
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
2961
|
+
excluding communication that is conspicuously marked or otherwise
|
|
2962
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
2717
2963
|
|
|
2718
|
-
|
|
2964
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
2965
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
2966
|
+
subsequently incorporated within the Work.
|
|
2719
2967
|
|
|
2720
|
-
|
|
2968
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
2969
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
2970
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
2971
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
2972
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
2973
|
+
Work and such Derivative Works in Source or Object form.
|
|
2721
2974
|
|
|
2722
|
-
|
|
2975
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
2976
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
2977
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
2978
|
+
(except as stated in this section) patent license to make, have made,
|
|
2979
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
2980
|
+
where such license applies only to those patent claims licensable
|
|
2981
|
+
by such Contributor that are necessarily infringed by their
|
|
2982
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
2983
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
2984
|
+
institute patent litigation against any entity (including a
|
|
2985
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
2986
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
2987
|
+
or contributory patent infringement, then any patent licenses
|
|
2988
|
+
granted to You under this License for that Work shall terminate
|
|
2989
|
+
as of the date such litigation is filed.
|
|
2990
|
+
|
|
2991
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
2992
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
2993
|
+
modifications, and in Source or Object form, provided that You
|
|
2994
|
+
meet the following conditions:
|
|
2995
|
+
|
|
2996
|
+
(a) You must give any other recipients of the Work or
|
|
2997
|
+
Derivative Works a copy of this License; and
|
|
2998
|
+
|
|
2999
|
+
(b) You must cause any modified files to carry prominent notices
|
|
3000
|
+
stating that You changed the files; and
|
|
3001
|
+
|
|
3002
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
3003
|
+
that You distribute, all copyright, patent, trademark, and
|
|
3004
|
+
attribution notices from the Source form of the Work,
|
|
3005
|
+
excluding those notices that do not pertain to any part of
|
|
3006
|
+
the Derivative Works; and
|
|
3007
|
+
|
|
3008
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
3009
|
+
distribution, then any Derivative Works that You distribute must
|
|
3010
|
+
include a readable copy of the attribution notices contained
|
|
3011
|
+
within such NOTICE file, excluding those notices that do not
|
|
3012
|
+
pertain to any part of the Derivative Works, in at least one
|
|
3013
|
+
of the following places: within a NOTICE text file distributed
|
|
3014
|
+
as part of the Derivative Works; within the Source form or
|
|
3015
|
+
documentation, if provided along with the Derivative Works; or,
|
|
3016
|
+
within a display generated by the Derivative Works, if and
|
|
3017
|
+
wherever such third-party notices normally appear. The contents
|
|
3018
|
+
of the NOTICE file are for informational purposes only and
|
|
3019
|
+
do not modify the License. You may add Your own attribution
|
|
3020
|
+
notices within Derivative Works that You distribute, alongside
|
|
3021
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
3022
|
+
that such additional attribution notices cannot be construed
|
|
3023
|
+
as modifying the License.
|
|
3024
|
+
|
|
3025
|
+
You may add Your own copyright statement to Your modifications and
|
|
3026
|
+
may provide additional or different license terms and conditions
|
|
3027
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
3028
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
3029
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
3030
|
+
the conditions stated in this License.
|
|
3031
|
+
|
|
3032
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
3033
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
3034
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
3035
|
+
this License, without any additional terms or conditions.
|
|
3036
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
3037
|
+
the terms of any separate license agreement you may have executed
|
|
3038
|
+
with Licensor regarding such Contributions.
|
|
2723
3039
|
|
|
3040
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
3041
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
3042
|
+
except as required for reasonable and customary use in describing the
|
|
3043
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
3044
|
+
|
|
3045
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
3046
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
3047
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
3048
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
3049
|
+
implied, including, without limitation, any warranties or conditions
|
|
3050
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
3051
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
3052
|
+
appropriateness of using or redistributing the Work and assume any
|
|
3053
|
+
risks associated with Your exercise of permissions under this License.
|
|
3054
|
+
|
|
3055
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
3056
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
3057
|
+
unless required by applicable law (such as deliberate and grossly
|
|
3058
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
3059
|
+
liable to You for damages, including any direct, indirect, special,
|
|
3060
|
+
incidental, or consequential damages of any character arising as a
|
|
3061
|
+
result of this License or out of the use or inability to use the
|
|
3062
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
3063
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
3064
|
+
other commercial damages or losses), even if such Contributor
|
|
3065
|
+
has been advised of the possibility of such damages.
|
|
3066
|
+
|
|
3067
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
3068
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
3069
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
3070
|
+
or other liability obligations and/or rights consistent with this
|
|
3071
|
+
License. However, in accepting such obligations, You may act only
|
|
3072
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
3073
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
3074
|
+
defend, and hold each Contributor harmless for any liability
|
|
3075
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
3076
|
+
of your accepting any such warranty or additional liability.
|
|
3077
|
+
|
|
3078
|
+
END OF TERMS AND CONDITIONS
|
|
3079
|
+
|
|
3080
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
3081
|
+
|
|
3082
|
+
To apply the Apache License to your work, attach the following
|
|
3083
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
3084
|
+
replaced with your own identifying information. (Don't include
|
|
3085
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
3086
|
+
comment syntax for the file format. We also recommend that a
|
|
3087
|
+
file or class name and description of purpose be included on the
|
|
3088
|
+
same "printed page" as the copyright notice for easier
|
|
3089
|
+
identification within third-party archives.
|
|
3090
|
+
|
|
3091
|
+
Copyright [yyyy] [name of copyright owner]
|
|
3092
|
+
|
|
3093
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
3094
|
+
you may not use this file except in compliance with the License.
|
|
3095
|
+
You may obtain a copy of the License at
|
|
3096
|
+
|
|
3097
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
3098
|
+
|
|
3099
|
+
Unless required by applicable law or agreed to in writing, software
|
|
3100
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
3101
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
3102
|
+
See the License for the specific language governing permissions and
|
|
3103
|
+
limitations under the License.
|
|
2724
3104
|
|
|
2725
3105
|
-------------------- DEPENDENCY DIVIDER --------------------
|
|
2726
3106
|
|
|
2727
|
-
Name:
|
|
2728
|
-
URL:
|
|
2729
|
-
Version:
|
|
3107
|
+
Name: debug
|
|
3108
|
+
URL: git://github.com/debug-js/debug.git
|
|
3109
|
+
Version: 4.3.4
|
|
2730
3110
|
License: MIT
|
|
2731
3111
|
|
|
2732
|
-
MIT License
|
|
3112
|
+
(The MIT License)
|
|
2733
3113
|
|
|
2734
|
-
Copyright (c)
|
|
3114
|
+
Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
|
|
3115
|
+
Copyright (c) 2018-2021 Josh Junon
|
|
2735
3116
|
|
|
2736
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
|
|
3117
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
|
|
3118
|
+
and associated documentation files (the 'Software'), to deal in the Software without restriction,
|
|
3119
|
+
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
3120
|
+
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
3121
|
+
subject to the following conditions:
|
|
2737
3122
|
|
|
2738
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
3123
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
3124
|
+
portions of the Software.
|
|
3125
|
+
|
|
3126
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
3127
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3128
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
3129
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3130
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2739
3131
|
|
|
2740
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2741
3132
|
|
|
2742
3133
|
|
|
2743
3134
|
-------------------- DEPENDENCY DIVIDER --------------------
|
|
2744
3135
|
|
|
2745
|
-
Name:
|
|
2746
|
-
URL:
|
|
2747
|
-
Version:
|
|
3136
|
+
Name: http-link-header
|
|
3137
|
+
URL: https://github.com/jhermsmeier/node-http-link-header
|
|
3138
|
+
Version: 1.1.1
|
|
2748
3139
|
License: MIT
|
|
2749
3140
|
|
|
2750
|
-
MIT License
|
|
2751
|
-
|
|
2752
|
-
Copyright (c) 2021 FormatJS
|
|
3141
|
+
# The MIT License (MIT)
|
|
3142
|
+
Copyright (c) 2016 Jonas Hermsmeier
|
|
2753
3143
|
|
|
2754
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3144
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3145
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3146
|
+
in the Software without restriction, including without limitation the rights
|
|
3147
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3148
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3149
|
+
furnished to do so, subject to the following conditions:
|
|
2755
3150
|
|
|
2756
|
-
The above copyright notice and this permission notice shall be included in all
|
|
3151
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3152
|
+
copies or substantial portions of the Software.
|
|
2757
3153
|
|
|
2758
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
3154
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
3155
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3156
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3157
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
3158
|
+
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
3159
|
+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
|
|
3160
|
+
OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2759
3161
|
|
|
2760
3162
|
|
|
2761
3163
|
-------------------- DEPENDENCY DIVIDER --------------------
|
|
2762
3164
|
|
|
2763
3165
|
Name: intl-messageformat
|
|
2764
|
-
URL:
|
|
3166
|
+
URL: https://github.com/formatjs/formatjs
|
|
2765
3167
|
Version: 10.5.3
|
|
2766
3168
|
License: BSD-3-Clause
|
|
2767
3169
|
|
|
@@ -2802,9 +3204,32 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
2802
3204
|
|
|
2803
3205
|
-------------------- DEPENDENCY DIVIDER --------------------
|
|
2804
3206
|
|
|
2805
|
-
Name:
|
|
2806
|
-
URL:
|
|
2807
|
-
Version:
|
|
3207
|
+
Name: js-library-detector
|
|
3208
|
+
URL: https://github.com/johnmichel/Library-Detector-for-Chrome#readme
|
|
3209
|
+
Version: 6.7.0
|
|
3210
|
+
License: MIT
|
|
3211
|
+
|
|
3212
|
+
The MIT License (MIT)
|
|
3213
|
+
Copyright (c) 2010-2016 Andrew Bredow, John Michel, and other contributors
|
|
3214
|
+
|
|
3215
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
3216
|
+
|
|
3217
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
3218
|
+
|
|
3219
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3220
|
+
|
|
3221
|
+
-------------------- DEPENDENCY DIVIDER --------------------
|
|
3222
|
+
|
|
3223
|
+
Name: legacy-javascript
|
|
3224
|
+
URL: https://github.com/GoogleChrome/lighthouse#readme
|
|
3225
|
+
Version: 0.0.1
|
|
3226
|
+
License: Apache-2.0
|
|
3227
|
+
|
|
3228
|
+
-------------------- DEPENDENCY DIVIDER --------------------
|
|
3229
|
+
|
|
3230
|
+
Name: lighthouse-logger
|
|
3231
|
+
URL: https://github.com/GoogleChrome/lighthouse.git
|
|
3232
|
+
Version: 2.0.2
|
|
2808
3233
|
License: Apache-2.0
|
|
2809
3234
|
|
|
2810
3235
|
|
|
@@ -2930,127 +3355,643 @@ License: Apache-2.0
|
|
|
2930
3355
|
that such additional attribution notices cannot be construed
|
|
2931
3356
|
as modifying the License.
|
|
2932
3357
|
|
|
2933
|
-
You may add Your own copyright statement to Your modifications and
|
|
2934
|
-
may provide additional or different license terms and conditions
|
|
2935
|
-
for use, reproduction, or distribution of Your modifications, or
|
|
2936
|
-
for any such Derivative Works as a whole, provided Your use,
|
|
2937
|
-
reproduction, and distribution of the Work otherwise complies with
|
|
2938
|
-
the conditions stated in this License.
|
|
3358
|
+
You may add Your own copyright statement to Your modifications and
|
|
3359
|
+
may provide additional or different license terms and conditions
|
|
3360
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
3361
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
3362
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
3363
|
+
the conditions stated in this License.
|
|
3364
|
+
|
|
3365
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
3366
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
3367
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
3368
|
+
this License, without any additional terms or conditions.
|
|
3369
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
3370
|
+
the terms of any separate license agreement you may have executed
|
|
3371
|
+
with Licensor regarding such Contributions.
|
|
3372
|
+
|
|
3373
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
3374
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
3375
|
+
except as required for reasonable and customary use in describing the
|
|
3376
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
3377
|
+
|
|
3378
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
3379
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
3380
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
3381
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
3382
|
+
implied, including, without limitation, any warranties or conditions
|
|
3383
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
3384
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
3385
|
+
appropriateness of using or redistributing the Work and assume any
|
|
3386
|
+
risks associated with Your exercise of permissions under this License.
|
|
3387
|
+
|
|
3388
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
3389
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
3390
|
+
unless required by applicable law (such as deliberate and grossly
|
|
3391
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
3392
|
+
liable to You for damages, including any direct, indirect, special,
|
|
3393
|
+
incidental, or consequential damages of any character arising as a
|
|
3394
|
+
result of this License or out of the use or inability to use the
|
|
3395
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
3396
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
3397
|
+
other commercial damages or losses), even if such Contributor
|
|
3398
|
+
has been advised of the possibility of such damages.
|
|
3399
|
+
|
|
3400
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
3401
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
3402
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
3403
|
+
or other liability obligations and/or rights consistent with this
|
|
3404
|
+
License. However, in accepting such obligations, You may act only
|
|
3405
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
3406
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
3407
|
+
defend, and hold each Contributor harmless for any liability
|
|
3408
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
3409
|
+
of your accepting any such warranty or additional liability.
|
|
3410
|
+
|
|
3411
|
+
END OF TERMS AND CONDITIONS
|
|
3412
|
+
|
|
3413
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
3414
|
+
|
|
3415
|
+
To apply the Apache License to your work, attach the following
|
|
3416
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
3417
|
+
replaced with your own identifying information. (Don't include
|
|
3418
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
3419
|
+
comment syntax for the file format. We also recommend that a
|
|
3420
|
+
file or class name and description of purpose be included on the
|
|
3421
|
+
same "printed page" as the copyright notice for easier
|
|
3422
|
+
identification within third-party archives.
|
|
3423
|
+
|
|
3424
|
+
Copyright 2014 Google Inc.
|
|
3425
|
+
|
|
3426
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
3427
|
+
you may not use this file except in compliance with the License.
|
|
3428
|
+
You may obtain a copy of the License at
|
|
3429
|
+
|
|
3430
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
3431
|
+
|
|
3432
|
+
Unless required by applicable law or agreed to in writing, software
|
|
3433
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
3434
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
3435
|
+
See the License for the specific language governing permissions and
|
|
3436
|
+
limitations under the License.
|
|
3437
|
+
|
|
3438
|
+
|
|
3439
|
+
-------------------- DEPENDENCY DIVIDER --------------------
|
|
3440
|
+
|
|
3441
|
+
Name: lighthouse-stack-packs
|
|
3442
|
+
URL: https://github.com/GoogleChrome/lighthouse-stack-packs#readme
|
|
3443
|
+
Version: 1.12.3
|
|
3444
|
+
License: Apache-2.0
|
|
3445
|
+
|
|
3446
|
+
|
|
3447
|
+
Apache License
|
|
3448
|
+
Version 2.0, January 2004
|
|
3449
|
+
http://www.apache.org/licenses/
|
|
3450
|
+
|
|
3451
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
3452
|
+
|
|
3453
|
+
1. Definitions.
|
|
3454
|
+
|
|
3455
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
3456
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
3457
|
+
|
|
3458
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
3459
|
+
the copyright owner that is granting the License.
|
|
3460
|
+
|
|
3461
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
3462
|
+
other entities that control, are controlled by, or are under common
|
|
3463
|
+
control with that entity. For the purposes of this definition,
|
|
3464
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
3465
|
+
direction or management of such entity, whether by contract or
|
|
3466
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
3467
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
3468
|
+
|
|
3469
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
3470
|
+
exercising permissions granted by this License.
|
|
3471
|
+
|
|
3472
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
3473
|
+
including but not limited to software source code, documentation
|
|
3474
|
+
source, and configuration files.
|
|
3475
|
+
|
|
3476
|
+
"Object" form shall mean any form resulting from mechanical
|
|
3477
|
+
transformation or translation of a Source form, including but
|
|
3478
|
+
not limited to compiled object code, generated documentation,
|
|
3479
|
+
and conversions to other media types.
|
|
3480
|
+
|
|
3481
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
3482
|
+
Object form, made available under the License, as indicated by a
|
|
3483
|
+
copyright notice that is included in or attached to the work
|
|
3484
|
+
(an example is provided in the Appendix below).
|
|
3485
|
+
|
|
3486
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
3487
|
+
form, that is based on (or derived from) the Work and for which the
|
|
3488
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
3489
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
3490
|
+
of this License, Derivative Works shall not include works that remain
|
|
3491
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
3492
|
+
the Work and Derivative Works thereof.
|
|
3493
|
+
|
|
3494
|
+
"Contribution" shall mean any work of authorship, including
|
|
3495
|
+
the original version of the Work and any modifications or additions
|
|
3496
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
3497
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
3498
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
3499
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
3500
|
+
means any form of electronic, verbal, or written communication sent
|
|
3501
|
+
to the Licensor or its representatives, including but not limited to
|
|
3502
|
+
communication on electronic mailing lists, source code control systems,
|
|
3503
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
3504
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
3505
|
+
excluding communication that is conspicuously marked or otherwise
|
|
3506
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
3507
|
+
|
|
3508
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
3509
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
3510
|
+
subsequently incorporated within the Work.
|
|
3511
|
+
|
|
3512
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
3513
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
3514
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
3515
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
3516
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
3517
|
+
Work and such Derivative Works in Source or Object form.
|
|
3518
|
+
|
|
3519
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
3520
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
3521
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
3522
|
+
(except as stated in this section) patent license to make, have made,
|
|
3523
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
3524
|
+
where such license applies only to those patent claims licensable
|
|
3525
|
+
by such Contributor that are necessarily infringed by their
|
|
3526
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
3527
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
3528
|
+
institute patent litigation against any entity (including a
|
|
3529
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
3530
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
3531
|
+
or contributory patent infringement, then any patent licenses
|
|
3532
|
+
granted to You under this License for that Work shall terminate
|
|
3533
|
+
as of the date such litigation is filed.
|
|
3534
|
+
|
|
3535
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
3536
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
3537
|
+
modifications, and in Source or Object form, provided that You
|
|
3538
|
+
meet the following conditions:
|
|
3539
|
+
|
|
3540
|
+
(a) You must give any other recipients of the Work or
|
|
3541
|
+
Derivative Works a copy of this License; and
|
|
3542
|
+
|
|
3543
|
+
(b) You must cause any modified files to carry prominent notices
|
|
3544
|
+
stating that You changed the files; and
|
|
3545
|
+
|
|
3546
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
3547
|
+
that You distribute, all copyright, patent, trademark, and
|
|
3548
|
+
attribution notices from the Source form of the Work,
|
|
3549
|
+
excluding those notices that do not pertain to any part of
|
|
3550
|
+
the Derivative Works; and
|
|
3551
|
+
|
|
3552
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
3553
|
+
distribution, then any Derivative Works that You distribute must
|
|
3554
|
+
include a readable copy of the attribution notices contained
|
|
3555
|
+
within such NOTICE file, excluding those notices that do not
|
|
3556
|
+
pertain to any part of the Derivative Works, in at least one
|
|
3557
|
+
of the following places: within a NOTICE text file distributed
|
|
3558
|
+
as part of the Derivative Works; within the Source form or
|
|
3559
|
+
documentation, if provided along with the Derivative Works; or,
|
|
3560
|
+
within a display generated by the Derivative Works, if and
|
|
3561
|
+
wherever such third-party notices normally appear. The contents
|
|
3562
|
+
of the NOTICE file are for informational purposes only and
|
|
3563
|
+
do not modify the License. You may add Your own attribution
|
|
3564
|
+
notices within Derivative Works that You distribute, alongside
|
|
3565
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
3566
|
+
that such additional attribution notices cannot be construed
|
|
3567
|
+
as modifying the License.
|
|
3568
|
+
|
|
3569
|
+
You may add Your own copyright statement to Your modifications and
|
|
3570
|
+
may provide additional or different license terms and conditions
|
|
3571
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
3572
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
3573
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
3574
|
+
the conditions stated in this License.
|
|
3575
|
+
|
|
3576
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
3577
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
3578
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
3579
|
+
this License, without any additional terms or conditions.
|
|
3580
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
3581
|
+
the terms of any separate license agreement you may have executed
|
|
3582
|
+
with Licensor regarding such Contributions.
|
|
3583
|
+
|
|
3584
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
3585
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
3586
|
+
except as required for reasonable and customary use in describing the
|
|
3587
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
3588
|
+
|
|
3589
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
3590
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
3591
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
3592
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
3593
|
+
implied, including, without limitation, any warranties or conditions
|
|
3594
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
3595
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
3596
|
+
appropriateness of using or redistributing the Work and assume any
|
|
3597
|
+
risks associated with Your exercise of permissions under this License.
|
|
3598
|
+
|
|
3599
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
3600
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
3601
|
+
unless required by applicable law (such as deliberate and grossly
|
|
3602
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
3603
|
+
liable to You for damages, including any direct, indirect, special,
|
|
3604
|
+
incidental, or consequential damages of any character arising as a
|
|
3605
|
+
result of this License or out of the use or inability to use the
|
|
3606
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
3607
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
3608
|
+
other commercial damages or losses), even if such Contributor
|
|
3609
|
+
has been advised of the possibility of such damages.
|
|
3610
|
+
|
|
3611
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
3612
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
3613
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
3614
|
+
or other liability obligations and/or rights consistent with this
|
|
3615
|
+
License. However, in accepting such obligations, You may act only
|
|
3616
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
3617
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
3618
|
+
defend, and hold each Contributor harmless for any liability
|
|
3619
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
3620
|
+
of your accepting any such warranty or additional liability.
|
|
3621
|
+
|
|
3622
|
+
END OF TERMS AND CONDITIONS
|
|
3623
|
+
|
|
3624
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
3625
|
+
|
|
3626
|
+
To apply the Apache License to your work, attach the following
|
|
3627
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
3628
|
+
replaced with your own identifying information. (Don't include
|
|
3629
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
3630
|
+
comment syntax for the file format. We also recommend that a
|
|
3631
|
+
file or class name and description of purpose be included on the
|
|
3632
|
+
same "printed page" as the copyright notice for easier
|
|
3633
|
+
identification within third-party archives.
|
|
3634
|
+
|
|
3635
|
+
Copyright [yyyy] [name of copyright owner]
|
|
3636
|
+
|
|
3637
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
3638
|
+
you may not use this file except in compliance with the License.
|
|
3639
|
+
You may obtain a copy of the License at
|
|
3640
|
+
|
|
3641
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
3642
|
+
|
|
3643
|
+
Unless required by applicable law or agreed to in writing, software
|
|
3644
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
3645
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
3646
|
+
See the License for the specific language governing permissions and
|
|
3647
|
+
limitations under the License.
|
|
3648
|
+
|
|
3649
|
+
-------------------- DEPENDENCY DIVIDER --------------------
|
|
3650
|
+
|
|
3651
|
+
Name: lodash-es
|
|
3652
|
+
URL: https://lodash.com/custom-builds
|
|
3653
|
+
Version: 4.17.21
|
|
3654
|
+
License: MIT
|
|
3655
|
+
|
|
3656
|
+
Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
|
3657
|
+
|
|
3658
|
+
Based on Underscore.js, copyright Jeremy Ashkenas,
|
|
3659
|
+
DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
|
|
3660
|
+
|
|
3661
|
+
This software consists of voluntary contributions made by many
|
|
3662
|
+
individuals. For exact contribution history, see the revision history
|
|
3663
|
+
available at https://github.com/lodash/lodash
|
|
3664
|
+
|
|
3665
|
+
The following license applies to all parts of this software except as
|
|
3666
|
+
documented below:
|
|
3667
|
+
|
|
3668
|
+
====
|
|
3669
|
+
|
|
3670
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3671
|
+
a copy of this software and associated documentation files (the
|
|
3672
|
+
"Software"), to deal in the Software without restriction, including
|
|
3673
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3674
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3675
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3676
|
+
the following conditions:
|
|
3677
|
+
|
|
3678
|
+
The above copyright notice and this permission notice shall be
|
|
3679
|
+
included in all copies or substantial portions of the Software.
|
|
3680
|
+
|
|
3681
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
3682
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3683
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
3684
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
3685
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
3686
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
3687
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3688
|
+
|
|
3689
|
+
====
|
|
3690
|
+
|
|
3691
|
+
Copyright and related rights for sample code are waived via CC0. Sample
|
|
3692
|
+
code is defined as all source code displayed within the prose of the
|
|
3693
|
+
documentation.
|
|
3694
|
+
|
|
3695
|
+
CC0: http://creativecommons.org/publicdomain/zero/1.0/
|
|
3696
|
+
|
|
3697
|
+
====
|
|
3698
|
+
|
|
3699
|
+
Files located in the node_modules and vendor directories are externally
|
|
3700
|
+
maintained libraries used by this software which have their own
|
|
3701
|
+
licenses; we recommend you read them, as their terms may differ from the
|
|
3702
|
+
terms above.
|
|
3703
|
+
|
|
3704
|
+
|
|
3705
|
+
-------------------- DEPENDENCY DIVIDER --------------------
|
|
3706
|
+
|
|
3707
|
+
Name: lookup-closest-locale
|
|
3708
|
+
URL: https://github.com/format-message/format-message/tree/master/packages/lookup-closest-locale
|
|
3709
|
+
Version: 6.2.0
|
|
3710
|
+
License: MIT
|
|
3711
|
+
|
|
3712
|
+
-------------------- DEPENDENCY DIVIDER --------------------
|
|
3713
|
+
|
|
3714
|
+
Name: marky
|
|
3715
|
+
URL: https://github.com/nolanlawson/marky#readme
|
|
3716
|
+
Version: 1.2.2
|
|
3717
|
+
License: Apache-2.0
|
|
3718
|
+
|
|
3719
|
+
Apache License
|
|
3720
|
+
Version 2.0, January 2004
|
|
3721
|
+
http://www.apache.org/licenses/
|
|
3722
|
+
|
|
3723
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
3724
|
+
|
|
3725
|
+
1. Definitions.
|
|
3726
|
+
|
|
3727
|
+
"License" shall mean the terms and conditions for use, reproduction, and
|
|
3728
|
+
distribution as defined by Sections 1 through 9 of this document.
|
|
3729
|
+
|
|
3730
|
+
"Licensor" shall mean the copyright owner or entity authorized by the
|
|
3731
|
+
copyright owner that is granting the License.
|
|
3732
|
+
|
|
3733
|
+
"Legal Entity" shall mean the union of the acting entity and all other
|
|
3734
|
+
entities that control, are controlled by, or are under common control with
|
|
3735
|
+
that entity. For the purposes of this definition, "control" means (i) the
|
|
3736
|
+
power, direct or indirect, to cause the direction or management of such
|
|
3737
|
+
entity, whether by contract or otherwise, or (ii) ownership of
|
|
3738
|
+
fifty percent (50%) or more of the outstanding shares, or (iii) beneficial
|
|
3739
|
+
ownership of such entity.
|
|
3740
|
+
|
|
3741
|
+
"You" (or "Your") shall mean an individual or Legal Entity exercising
|
|
3742
|
+
permissions granted by this License.
|
|
3743
|
+
|
|
3744
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
3745
|
+
including but not limited to software source code, documentation source,
|
|
3746
|
+
and configuration files.
|
|
3747
|
+
|
|
3748
|
+
"Object" form shall mean any form resulting from mechanical transformation
|
|
3749
|
+
or translation of a Source form, including but not limited to compiled
|
|
3750
|
+
object code, generated documentation, and conversions to
|
|
3751
|
+
other media types.
|
|
3752
|
+
|
|
3753
|
+
"Work" shall mean the work of authorship, whether in Source or Object
|
|
3754
|
+
form, made available under the License, as indicated by a copyright notice
|
|
3755
|
+
that is included in or attached to the work (an example is provided in the
|
|
3756
|
+
Appendix below).
|
|
3757
|
+
|
|
3758
|
+
"Derivative Works" shall mean any work, whether in Source or Object form,
|
|
3759
|
+
that is based on (or derived from) the Work and for which the editorial
|
|
3760
|
+
revisions, annotations, elaborations, or other modifications represent,
|
|
3761
|
+
as a whole, an original work of authorship. For the purposes of this
|
|
3762
|
+
License, Derivative Works shall not include works that remain separable
|
|
3763
|
+
from, or merely link (or bind by name) to the interfaces of, the Work and
|
|
3764
|
+
Derivative Works thereof.
|
|
3765
|
+
|
|
3766
|
+
"Contribution" shall mean any work of authorship, including the original
|
|
3767
|
+
version of the Work and any modifications or additions to that Work or
|
|
3768
|
+
Derivative Works thereof, that is intentionally submitted to Licensor for
|
|
3769
|
+
inclusion in the Work by the copyright owner or by an individual or
|
|
3770
|
+
Legal Entity authorized to submit on behalf of the copyright owner.
|
|
3771
|
+
For the purposes of this definition, "submitted" means any form of
|
|
3772
|
+
electronic, verbal, or written communication sent to the Licensor or its
|
|
3773
|
+
representatives, including but not limited to communication on electronic
|
|
3774
|
+
mailing lists, source code control systems, and issue tracking systems
|
|
3775
|
+
that are managed by, or on behalf of, the Licensor for the purpose of
|
|
3776
|
+
discussing and improving the Work, but excluding communication that is
|
|
3777
|
+
conspicuously marked or otherwise designated in writing by the copyright
|
|
3778
|
+
owner as "Not a Contribution."
|
|
3779
|
+
|
|
3780
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity on
|
|
3781
|
+
behalf of whom a Contribution has been received by Licensor and
|
|
3782
|
+
subsequently incorporated within the Work.
|
|
3783
|
+
|
|
3784
|
+
2. Grant of Copyright License.
|
|
3785
|
+
|
|
3786
|
+
Subject to the terms and conditions of this License, each Contributor
|
|
3787
|
+
hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,
|
|
3788
|
+
royalty-free, irrevocable copyright license to reproduce, prepare
|
|
3789
|
+
Derivative Works of, publicly display, publicly perform, sublicense,
|
|
3790
|
+
and distribute the Work and such Derivative Works in
|
|
3791
|
+
Source or Object form.
|
|
3792
|
+
|
|
3793
|
+
3. Grant of Patent License.
|
|
3794
|
+
|
|
3795
|
+
Subject to the terms and conditions of this License, each Contributor
|
|
3796
|
+
hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,
|
|
3797
|
+
royalty-free, irrevocable (except as stated in this section) patent
|
|
3798
|
+
license to make, have made, use, offer to sell, sell, import, and
|
|
3799
|
+
otherwise transfer the Work, where such license applies only to those
|
|
3800
|
+
patent claims licensable by such Contributor that are necessarily
|
|
3801
|
+
infringed by their Contribution(s) alone or by combination of their
|
|
3802
|
+
Contribution(s) with the Work to which such Contribution(s) was submitted.
|
|
3803
|
+
If You institute patent litigation against any entity (including a
|
|
3804
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work or a
|
|
3805
|
+
Contribution incorporated within the Work constitutes direct or
|
|
3806
|
+
contributory patent infringement, then any patent licenses granted to
|
|
3807
|
+
You under this License for that Work shall terminate as of the date such
|
|
3808
|
+
litigation is filed.
|
|
3809
|
+
|
|
3810
|
+
4. Redistribution.
|
|
3811
|
+
|
|
3812
|
+
You may reproduce and distribute copies of the Work or Derivative Works
|
|
3813
|
+
thereof in any medium, with or without modifications, and in Source or
|
|
3814
|
+
Object form, provided that You meet the following conditions:
|
|
3815
|
+
|
|
3816
|
+
1. You must give any other recipients of the Work or Derivative Works a
|
|
3817
|
+
copy of this License; and
|
|
3818
|
+
|
|
3819
|
+
2. You must cause any modified files to carry prominent notices stating
|
|
3820
|
+
that You changed the files; and
|
|
3821
|
+
|
|
3822
|
+
3. You must retain, in the Source form of any Derivative Works that You
|
|
3823
|
+
distribute, all copyright, patent, trademark, and attribution notices from
|
|
3824
|
+
the Source form of the Work, excluding those notices that do not pertain
|
|
3825
|
+
to any part of the Derivative Works; and
|
|
3826
|
+
|
|
3827
|
+
4. If the Work includes a "NOTICE" text file as part of its distribution,
|
|
3828
|
+
then any Derivative Works that You distribute must include a readable copy
|
|
3829
|
+
of the attribution notices contained within such NOTICE file, excluding
|
|
3830
|
+
those notices that do not pertain to any part of the Derivative Works,
|
|
3831
|
+
in at least one of the following places: within a NOTICE text file
|
|
3832
|
+
distributed as part of the Derivative Works; within the Source form or
|
|
3833
|
+
documentation, if provided along with the Derivative Works; or, within a
|
|
3834
|
+
display generated by the Derivative Works, if and wherever such
|
|
3835
|
+
third-party notices normally appear. The contents of the NOTICE file are
|
|
3836
|
+
for informational purposes only and do not modify the License.
|
|
3837
|
+
You may add Your own attribution notices within Derivative Works that You
|
|
3838
|
+
distribute, alongside or as an addendum to the NOTICE text from the Work,
|
|
3839
|
+
provided that such additional attribution notices cannot be construed
|
|
3840
|
+
as modifying the License.
|
|
3841
|
+
|
|
3842
|
+
You may add Your own copyright statement to Your modifications and may
|
|
3843
|
+
provide additional or different license terms and conditions for use,
|
|
3844
|
+
reproduction, or distribution of Your modifications, or for any such
|
|
3845
|
+
Derivative Works as a whole, provided Your use, reproduction, and
|
|
3846
|
+
distribution of the Work otherwise complies with the conditions
|
|
3847
|
+
stated in this License.
|
|
3848
|
+
|
|
3849
|
+
5. Submission of Contributions.
|
|
3850
|
+
|
|
3851
|
+
Unless You explicitly state otherwise, any Contribution intentionally
|
|
3852
|
+
submitted for inclusion in the Work by You to the Licensor shall be under
|
|
3853
|
+
the terms and conditions of this License, without any additional
|
|
3854
|
+
terms or conditions. Notwithstanding the above, nothing herein shall
|
|
3855
|
+
supersede or modify the terms of any separate license agreement you may
|
|
3856
|
+
have executed with Licensor regarding such Contributions.
|
|
3857
|
+
|
|
3858
|
+
6. Trademarks.
|
|
3859
|
+
|
|
3860
|
+
This License does not grant permission to use the trade names, trademarks,
|
|
3861
|
+
service marks, or product names of the Licensor, except as required for
|
|
3862
|
+
reasonable and customary use in describing the origin of the Work and
|
|
3863
|
+
reproducing the content of the NOTICE file.
|
|
3864
|
+
|
|
3865
|
+
7. Disclaimer of Warranty.
|
|
3866
|
+
|
|
3867
|
+
Unless required by applicable law or agreed to in writing, Licensor
|
|
3868
|
+
provides the Work (and each Contributor provides its Contributions)
|
|
3869
|
+
on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
|
3870
|
+
either express or implied, including, without limitation, any warranties
|
|
3871
|
+
or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS
|
|
3872
|
+
FOR A PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
3873
|
+
appropriateness of using or redistributing the Work and assume any risks
|
|
3874
|
+
associated with Your exercise of permissions under this License.
|
|
3875
|
+
|
|
3876
|
+
8. Limitation of Liability.
|
|
3877
|
+
|
|
3878
|
+
In no event and under no legal theory, whether in tort
|
|
3879
|
+
(including negligence), contract, or otherwise, unless required by
|
|
3880
|
+
applicable law (such as deliberate and grossly negligent acts) or agreed
|
|
3881
|
+
to in writing, shall any Contributor be liable to You for damages,
|
|
3882
|
+
including any direct, indirect, special, incidental, or consequential
|
|
3883
|
+
damages of any character arising as a result of this License or out of
|
|
3884
|
+
the use or inability to use the Work (including but not limited to damages
|
|
3885
|
+
for loss of goodwill, work stoppage, computer failure or malfunction,
|
|
3886
|
+
or any and all other commercial damages or losses), even if such
|
|
3887
|
+
Contributor has been advised of the possibility of such damages.
|
|
3888
|
+
|
|
3889
|
+
9. Accepting Warranty or Additional Liability.
|
|
3890
|
+
|
|
3891
|
+
While redistributing the Work or Derivative Works thereof, You may choose
|
|
3892
|
+
to offer, and charge a fee for, acceptance of support, warranty,
|
|
3893
|
+
indemnity, or other liability obligations and/or rights consistent with
|
|
3894
|
+
this License. However, in accepting such obligations, You may act only
|
|
3895
|
+
on Your own behalf and on Your sole responsibility, not on behalf of any
|
|
3896
|
+
other Contributor, and only if You agree to indemnify, defend, and hold
|
|
3897
|
+
each Contributor harmless for any liability incurred by, or claims
|
|
3898
|
+
asserted against, such Contributor by reason of your accepting any such
|
|
3899
|
+
warranty or additional liability.
|
|
3900
|
+
|
|
3901
|
+
END OF TERMS AND CONDITIONS
|
|
3902
|
+
|
|
3903
|
+
APPENDIX: How to apply the Apache License to your work
|
|
3904
|
+
|
|
3905
|
+
To apply the Apache License to your work, attach the following boilerplate
|
|
3906
|
+
notice, with the fields enclosed by brackets "[]" replaced with your own
|
|
3907
|
+
identifying information. (Don't include the brackets!) The text should be
|
|
3908
|
+
enclosed in the appropriate comment syntax for the file format. We also
|
|
3909
|
+
recommend that a file or class name and description of purpose be included
|
|
3910
|
+
on the same "printed page" as the copyright notice for easier
|
|
3911
|
+
identification within third-party archives.
|
|
3912
|
+
|
|
3913
|
+
Copyright 2016 Nolan Lawson
|
|
2939
3914
|
|
|
2940
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
2941
|
-
any Contribution intentionally submitted for inclusion in the Work
|
|
2942
|
-
by You to the Licensor shall be under the terms and conditions of
|
|
2943
|
-
this License, without any additional terms or conditions.
|
|
2944
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
|
2945
|
-
the terms of any separate license agreement you may have executed
|
|
2946
|
-
with Licensor regarding such Contributions.
|
|
2947
3915
|
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
|
3916
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
3917
|
+
you may not use this file except in compliance with the License.
|
|
3918
|
+
You may obtain a copy of the License at
|
|
2952
3919
|
|
|
2953
|
-
|
|
2954
|
-
agreed to in writing, Licensor provides the Work (and each
|
|
2955
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
2956
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
2957
|
-
implied, including, without limitation, any warranties or conditions
|
|
2958
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
2959
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
2960
|
-
appropriateness of using or redistributing the Work and assume any
|
|
2961
|
-
risks associated with Your exercise of permissions under this License.
|
|
3920
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
2962
3921
|
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
|
|
2966
|
-
|
|
2967
|
-
|
|
2968
|
-
incidental, or consequential damages of any character arising as a
|
|
2969
|
-
result of this License or out of the use or inability to use the
|
|
2970
|
-
Work (including but not limited to damages for loss of goodwill,
|
|
2971
|
-
work stoppage, computer failure or malfunction, or any and all
|
|
2972
|
-
other commercial damages or losses), even if such Contributor
|
|
2973
|
-
has been advised of the possibility of such damages.
|
|
3922
|
+
Unless required by applicable law or agreed to in writing, software
|
|
3923
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
3924
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
3925
|
+
or implied. See the License for the specific language governing
|
|
3926
|
+
permissions and limitations under the License.
|
|
2974
3927
|
|
|
2975
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
|
2976
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
|
2977
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
2978
|
-
or other liability obligations and/or rights consistent with this
|
|
2979
|
-
License. However, in accepting such obligations, You may act only
|
|
2980
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
|
2981
|
-
of any other Contributor, and only if You agree to indemnify,
|
|
2982
|
-
defend, and hold each Contributor harmless for any liability
|
|
2983
|
-
incurred by, or claims asserted against, such Contributor by reason
|
|
2984
|
-
of your accepting any such warranty or additional liability.
|
|
2985
3928
|
|
|
2986
|
-
END OF TERMS AND CONDITIONS
|
|
2987
3929
|
|
|
2988
|
-
|
|
3930
|
+
-------------------- DEPENDENCY DIVIDER --------------------
|
|
2989
3931
|
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
comment syntax for the file format. We also recommend that a
|
|
2995
|
-
file or class name and description of purpose be included on the
|
|
2996
|
-
same "printed page" as the copyright notice for easier
|
|
2997
|
-
identification within third-party archives.
|
|
3932
|
+
Name: ms
|
|
3933
|
+
URL: zeit/ms
|
|
3934
|
+
Version: 2.1.2
|
|
3935
|
+
License: MIT
|
|
2998
3936
|
|
|
2999
|
-
|
|
3937
|
+
The MIT License (MIT)
|
|
3000
3938
|
|
|
3001
|
-
|
|
3002
|
-
you may not use this file except in compliance with the License.
|
|
3003
|
-
You may obtain a copy of the License at
|
|
3939
|
+
Copyright (c) 2016 Zeit, Inc.
|
|
3004
3940
|
|
|
3005
|
-
|
|
3941
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3942
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3943
|
+
in the Software without restriction, including without limitation the rights
|
|
3944
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3945
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3946
|
+
furnished to do so, subject to the following conditions:
|
|
3947
|
+
|
|
3948
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3949
|
+
copies or substantial portions of the Software.
|
|
3950
|
+
|
|
3951
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3952
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3953
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3954
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3955
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3956
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3957
|
+
SOFTWARE.
|
|
3006
3958
|
|
|
3007
|
-
Unless required by applicable law or agreed to in writing, software
|
|
3008
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
3009
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
3010
|
-
See the License for the specific language governing permissions and
|
|
3011
|
-
limitations under the License.
|
|
3012
3959
|
|
|
3013
3960
|
-------------------- DEPENDENCY DIVIDER --------------------
|
|
3014
3961
|
|
|
3015
|
-
Name:
|
|
3016
|
-
URL:
|
|
3017
|
-
Version:
|
|
3018
|
-
License:
|
|
3962
|
+
Name: puppeteer-core
|
|
3963
|
+
URL: https://github.com/puppeteer/puppeteer/tree/main/packages/puppeteer-core
|
|
3964
|
+
Version: 24.40.0
|
|
3965
|
+
License: Apache-2.0
|
|
3019
3966
|
|
|
3020
3967
|
-------------------- DEPENDENCY DIVIDER --------------------
|
|
3021
3968
|
|
|
3022
|
-
Name:
|
|
3023
|
-
URL:
|
|
3024
|
-
Version:
|
|
3025
|
-
License:
|
|
3969
|
+
Name: robots-parser
|
|
3970
|
+
URL: https://github.com/samclarke/robots-parser
|
|
3971
|
+
Version: 3.0.1
|
|
3972
|
+
License: MIT
|
|
3026
3973
|
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
|
|
3030
|
-
|
|
3031
|
-
|
|
3032
|
-
|
|
3033
|
-
|
|
3034
|
-
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
|
|
3045
|
-
|
|
3046
|
-
|
|
3047
|
-
|
|
3048
|
-
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
3049
|
-
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
3050
|
-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
3051
|
-
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
3052
|
-
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3053
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3974
|
+
The MIT License (MIT)
|
|
3975
|
+
|
|
3976
|
+
Copyright (c) 2014 Sam Clarke
|
|
3977
|
+
|
|
3978
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3979
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3980
|
+
in the Software without restriction, including without limitation the rights
|
|
3981
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3982
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3983
|
+
furnished to do so, subject to the following conditions:
|
|
3984
|
+
|
|
3985
|
+
The above copyright notice and this permission notice shall be included in
|
|
3986
|
+
all copies or substantial portions of the Software.
|
|
3987
|
+
|
|
3988
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3989
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3990
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3991
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3992
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3993
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3994
|
+
THE SOFTWARE.
|
|
3054
3995
|
|
|
3055
3996
|
|
|
3056
3997
|
-------------------- DEPENDENCY DIVIDER --------------------
|
|
@@ -3084,16 +4025,31 @@ SOFTWARE.
|
|
|
3084
4025
|
|
|
3085
4026
|
-------------------- DEPENDENCY DIVIDER --------------------
|
|
3086
4027
|
|
|
3087
|
-
Name:
|
|
3088
|
-
URL:
|
|
3089
|
-
Version:
|
|
3090
|
-
License:
|
|
4028
|
+
Name: tldts-core
|
|
4029
|
+
URL: https://github.com/remusao/tldts#readme
|
|
4030
|
+
Version: 7.0.27
|
|
4031
|
+
License: MIT
|
|
4032
|
+
|
|
4033
|
+
Copyright (c) 2017 Thomas Parisot, 2018 Rémi Berson
|
|
4034
|
+
|
|
4035
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
4036
|
+
associated documentation files (the "Software"), to deal in the Software without restriction,
|
|
4037
|
+
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
4038
|
+
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
4039
|
+
subject to the following conditions:
|
|
4040
|
+
|
|
4041
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
4042
|
+
|
|
4043
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4044
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
4045
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
4046
|
+
|
|
3091
4047
|
|
|
3092
4048
|
-------------------- DEPENDENCY DIVIDER --------------------
|
|
3093
4049
|
|
|
3094
4050
|
Name: tldts-icann
|
|
3095
|
-
URL:
|
|
3096
|
-
Version: 7.0.
|
|
4051
|
+
URL: https://github.com/remusao/tldts#readme
|
|
4052
|
+
Version: 7.0.27
|
|
3097
4053
|
License: MIT
|
|
3098
4054
|
|
|
3099
4055
|
Copyright (c) 2017 Thomas Parisot, 2018 Rémi Berson
|
|
@@ -3113,41 +4069,31 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTH
|
|
|
3113
4069
|
|
|
3114
4070
|
-------------------- DEPENDENCY DIVIDER --------------------
|
|
3115
4071
|
|
|
3116
|
-
Name:
|
|
3117
|
-
URL:
|
|
3118
|
-
Version:
|
|
3119
|
-
License:
|
|
3120
|
-
|
|
3121
|
-
# The MIT License (MIT)
|
|
3122
|
-
Copyright (c) 2016 Jonas Hermsmeier
|
|
3123
|
-
|
|
3124
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3125
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
3126
|
-
in the Software without restriction, including without limitation the rights
|
|
3127
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3128
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
3129
|
-
furnished to do so, subject to the following conditions:
|
|
4072
|
+
Name: tslib
|
|
4073
|
+
URL: https://www.typescriptlang.org/
|
|
4074
|
+
Version: 2.6.2
|
|
4075
|
+
License: 0BSD
|
|
3130
4076
|
|
|
3131
|
-
|
|
3132
|
-
copies or substantial portions of the Software.
|
|
4077
|
+
Copyright (c) Microsoft Corporation.
|
|
3133
4078
|
|
|
3134
|
-
|
|
3135
|
-
|
|
3136
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3137
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
3138
|
-
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
3139
|
-
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
|
|
3140
|
-
OR OTHER DEALINGS IN THE SOFTWARE.
|
|
4079
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
4080
|
+
purpose with or without fee is hereby granted.
|
|
3141
4081
|
|
|
4082
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
4083
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
4084
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
4085
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
4086
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
4087
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
4088
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
3142
4089
|
|
|
3143
4090
|
-------------------- DEPENDENCY DIVIDER --------------------
|
|
3144
4091
|
|
|
3145
|
-
Name:
|
|
3146
|
-
URL:
|
|
3147
|
-
Version:
|
|
4092
|
+
Name: web-features
|
|
4093
|
+
URL: git+https://github.com/web-platform-dx/web-features.git
|
|
4094
|
+
Version: 3.21.0
|
|
3148
4095
|
License: Apache-2.0
|
|
3149
4096
|
|
|
3150
|
-
|
|
3151
4097
|
Apache License
|
|
3152
4098
|
Version 2.0, January 2004
|
|
3153
4099
|
http://www.apache.org/licenses/
|
|
@@ -3349,32 +4295,3 @@ License: Apache-2.0
|
|
|
3349
4295
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
3350
4296
|
See the License for the specific language governing permissions and
|
|
3351
4297
|
limitations under the License.
|
|
3352
|
-
|
|
3353
|
-
-------------------- DEPENDENCY DIVIDER --------------------
|
|
3354
|
-
|
|
3355
|
-
Name: robots-parser
|
|
3356
|
-
URL: N/A
|
|
3357
|
-
Version: 3.0.1
|
|
3358
|
-
License: MIT
|
|
3359
|
-
|
|
3360
|
-
The MIT License (MIT)
|
|
3361
|
-
|
|
3362
|
-
Copyright (c) 2014 Sam Clarke
|
|
3363
|
-
|
|
3364
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3365
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
3366
|
-
in the Software without restriction, including without limitation the rights
|
|
3367
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3368
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
3369
|
-
furnished to do so, subject to the following conditions:
|
|
3370
|
-
|
|
3371
|
-
The above copyright notice and this permission notice shall be included in
|
|
3372
|
-
all copies or substantial portions of the Software.
|
|
3373
|
-
|
|
3374
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3375
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3376
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3377
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3378
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3379
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3380
|
-
THE SOFTWARE.
|