@aws/nx-plugin 1.0.0-rc.73 → 1.0.0-rc.75
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/LICENSE-THIRD-PARTY +495 -1188
- package/README.md +7 -89
- package/migrations.json +11 -1
- package/package.json +1 -1
- package/src/internal/test-matrix/generator.js +15 -0
- package/src/internal/test-matrix/generator.js.map +1 -1
- package/src/license/dependency-check/collectors/python-collector.js +9 -3
- package/src/license/dependency-check/collectors/python-collector.js.map +1 -1
- package/src/migrations/latest/py-agent-session-id-middleware-extraction/metadata.json +3 -0
- package/src/migrations/latest/py-agent-session-id-middleware-extraction/migration.d.ts +2 -0
- package/src/migrations/latest/py-agent-session-id-middleware-extraction/migration.js +118 -0
- package/src/migrations/latest/py-agent-session-id-middleware-extraction/migration.js.map +1 -0
- package/src/migrations/latest/ts-agent-session-id-middleware-extraction/metadata.json +3 -0
- package/src/migrations/latest/ts-agent-session-id-middleware-extraction/migration.d.ts +2 -0
- package/src/migrations/latest/ts-agent-session-id-middleware-extraction/migration.js +124 -0
- package/src/migrations/latest/ts-agent-session-id-middleware-extraction/migration.js.map +1 -0
- package/src/py/agent/__snapshots__/generator.constructs.spec.ts.snap +3 -18
- package/src/py/agent/__snapshots__/generator.frameworks.spec.ts.snap +2 -13
- package/src/py/agent/files/langchain/a2a/main.py.template +4 -15
- package/src/py/agent/files/langchain/ag-ui/main.py.template +2 -13
- package/src/py/agent/files/langchain/common/middleware/__init__.py.template +0 -0
- package/src/py/agent/files/langchain/common/middleware/session_id_middleware.py.template +17 -0
- package/src/py/agent/files/langchain/http/main.py.template +2 -14
- package/src/py/agent/files/strands/a2a/main.py.template +4 -15
- package/src/py/agent/files/strands/ag-ui/main.py.template +2 -13
- package/src/py/agent/files/strands/common/middleware/__init__.py.template +0 -0
- package/src/py/agent/files/strands/common/middleware/session_id_middleware.py.template +17 -0
- package/src/py/agent/files/strands/http/main.py.template +2 -17
- package/src/sdk/agentcore-harness.d.ts +6 -0
- package/src/sdk/agentcore-harness.js +7 -0
- package/src/sdk/agentcore-harness.js.map +1 -0
- package/src/sdk/smithy.d.ts +6 -0
- package/src/sdk/smithy.js +7 -0
- package/src/sdk/smithy.js.map +1 -0
- package/src/ts/agent/files/a2a/index.ts.template +4 -11
- package/src/ts/agent/files/ag-ui/index.ts.template +2 -12
- package/src/ts/agent/files/common-express/middleware/session-id-middleware.ts.template +16 -0
- package/src/ts/agent/generator.js +8 -0
- package/src/ts/agent/generator.js.map +1 -1
package/LICENSE-THIRD-PARTY
CHANGED
|
@@ -4071,27 +4071,30 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
4071
4071
|
|
|
4072
4072
|
---
|
|
4073
4073
|
|
|
4074
|
-
The following software may be included in this product: @hono/node-server (1.19.
|
|
4074
|
+
The following software may be included in this product: @hono/node-server (1.19.17)
|
|
4075
4075
|
This software contains the following license and notice below:
|
|
4076
4076
|
|
|
4077
4077
|
MIT License
|
|
4078
4078
|
|
|
4079
|
-
Copyright (c) Yusuke Wada
|
|
4079
|
+
Copyright (c) 2022 - present, Yusuke Wada and Hono contributors
|
|
4080
4080
|
|
|
4081
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4082
|
-
associated documentation files (the "Software"), to deal
|
|
4083
|
-
|
|
4084
|
-
|
|
4085
|
-
|
|
4081
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4082
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4083
|
+
in the Software without restriction, including without limitation the rights
|
|
4084
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4085
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4086
|
+
furnished to do so, subject to the following conditions:
|
|
4086
4087
|
|
|
4087
|
-
The above copyright notice and this permission notice shall be included in all
|
|
4088
|
-
portions of the Software.
|
|
4088
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4089
|
+
copies or substantial portions of the Software.
|
|
4089
4090
|
|
|
4090
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4091
|
-
LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4092
|
-
|
|
4093
|
-
|
|
4094
|
-
|
|
4091
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4092
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4093
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4094
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4095
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4096
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4097
|
+
SOFTWARE.
|
|
4095
4098
|
|
|
4096
4099
|
---
|
|
4097
4100
|
|
|
@@ -6344,30 +6347,6 @@ THE SOFTWARE.
|
|
|
6344
6347
|
|
|
6345
6348
|
---
|
|
6346
6349
|
|
|
6347
|
-
The following software may be included in this product: @rollup/rollup-linux-x64-gnu (4.50.1)
|
|
6348
|
-
This software contains the following license and notice below:
|
|
6349
|
-
|
|
6350
|
-
MIT License
|
|
6351
|
-
|
|
6352
|
-
Copyright (c) Lukas Taegert-Atkinson
|
|
6353
|
-
|
|
6354
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
6355
|
-
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
6356
|
-
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
6357
|
-
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
6358
|
-
following conditions:
|
|
6359
|
-
|
|
6360
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
6361
|
-
portions of the Software.
|
|
6362
|
-
|
|
6363
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
6364
|
-
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
6365
|
-
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
6366
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
6367
|
-
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
6368
|
-
|
|
6369
|
-
---
|
|
6370
|
-
|
|
6371
6350
|
The following software may be included in this product: @rspack/binding (2.1.4)
|
|
6372
6351
|
This software contains the following license and notice below:
|
|
6373
6352
|
|
|
@@ -7174,7 +7153,7 @@ SOFTWARE
|
|
|
7174
7153
|
|
|
7175
7154
|
---
|
|
7176
7155
|
|
|
7177
|
-
The following software may be included in this product: @types/estree (1.0.
|
|
7156
|
+
The following software may be included in this product: @types/estree (1.0.9)
|
|
7178
7157
|
This software contains the following license and notice below:
|
|
7179
7158
|
|
|
7180
7159
|
MIT License
|
|
@@ -7201,7 +7180,7 @@ SOFTWARE
|
|
|
7201
7180
|
|
|
7202
7181
|
---
|
|
7203
7182
|
|
|
7204
|
-
The following software may be included in this product: @types/estree (1.0.
|
|
7183
|
+
The following software may be included in this product: @types/estree-jsx (1.0.5)
|
|
7205
7184
|
This software contains the following license and notice below:
|
|
7206
7185
|
|
|
7207
7186
|
MIT License
|
|
@@ -7228,7 +7207,7 @@ SOFTWARE
|
|
|
7228
7207
|
|
|
7229
7208
|
---
|
|
7230
7209
|
|
|
7231
|
-
The following software may be included in this product: @types/
|
|
7210
|
+
The following software may be included in this product: @types/hast (3.0.4)
|
|
7232
7211
|
This software contains the following license and notice below:
|
|
7233
7212
|
|
|
7234
7213
|
MIT License
|
|
@@ -7255,7 +7234,7 @@ SOFTWARE
|
|
|
7255
7234
|
|
|
7256
7235
|
---
|
|
7257
7236
|
|
|
7258
|
-
The following software may be included in this product: @types/
|
|
7237
|
+
The following software may be included in this product: @types/http-cache-semantics (4.2.0)
|
|
7259
7238
|
This software contains the following license and notice below:
|
|
7260
7239
|
|
|
7261
7240
|
MIT License
|
|
@@ -7282,7 +7261,7 @@ SOFTWARE
|
|
|
7282
7261
|
|
|
7283
7262
|
---
|
|
7284
7263
|
|
|
7285
|
-
The following software may be included in this product: @types/http-
|
|
7264
|
+
The following software may be included in this product: @types/http-proxy (1.17.16)
|
|
7286
7265
|
This software contains the following license and notice below:
|
|
7287
7266
|
|
|
7288
7267
|
MIT License
|
|
@@ -7309,7 +7288,7 @@ SOFTWARE
|
|
|
7309
7288
|
|
|
7310
7289
|
---
|
|
7311
7290
|
|
|
7312
|
-
The following software may be included in this product: @types/
|
|
7291
|
+
The following software may be included in this product: @types/js-yaml (4.0.9)
|
|
7313
7292
|
This software contains the following license and notice below:
|
|
7314
7293
|
|
|
7315
7294
|
MIT License
|
|
@@ -7336,7 +7315,7 @@ SOFTWARE
|
|
|
7336
7315
|
|
|
7337
7316
|
---
|
|
7338
7317
|
|
|
7339
|
-
The following software may be included in this product: @types/
|
|
7318
|
+
The following software may be included in this product: @types/json-schema (7.0.15)
|
|
7340
7319
|
This software contains the following license and notice below:
|
|
7341
7320
|
|
|
7342
7321
|
MIT License
|
|
@@ -7363,7 +7342,7 @@ SOFTWARE
|
|
|
7363
7342
|
|
|
7364
7343
|
---
|
|
7365
7344
|
|
|
7366
|
-
The following software may be included in this product: @types/
|
|
7345
|
+
The following software may be included in this product: @types/mdast (4.0.4)
|
|
7367
7346
|
This software contains the following license and notice below:
|
|
7368
7347
|
|
|
7369
7348
|
MIT License
|
|
@@ -7390,7 +7369,7 @@ SOFTWARE
|
|
|
7390
7369
|
|
|
7391
7370
|
---
|
|
7392
7371
|
|
|
7393
|
-
The following software may be included in this product: @types/
|
|
7372
|
+
The following software may be included in this product: @types/ms (2.1.0)
|
|
7394
7373
|
This software contains the following license and notice below:
|
|
7395
7374
|
|
|
7396
7375
|
MIT License
|
|
@@ -7417,7 +7396,7 @@ SOFTWARE
|
|
|
7417
7396
|
|
|
7418
7397
|
---
|
|
7419
7398
|
|
|
7420
|
-
The following software may be included in this product: @types/
|
|
7399
|
+
The following software may be included in this product: @types/node (26.2.0)
|
|
7421
7400
|
This software contains the following license and notice below:
|
|
7422
7401
|
|
|
7423
7402
|
MIT License
|
|
@@ -7444,7 +7423,7 @@ SOFTWARE
|
|
|
7444
7423
|
|
|
7445
7424
|
---
|
|
7446
7425
|
|
|
7447
|
-
The following software may be included in this product: @types/
|
|
7426
|
+
The following software may be included in this product: @types/parse-json (4.0.2)
|
|
7448
7427
|
This software contains the following license and notice below:
|
|
7449
7428
|
|
|
7450
7429
|
MIT License
|
|
@@ -7471,7 +7450,7 @@ SOFTWARE
|
|
|
7471
7450
|
|
|
7472
7451
|
---
|
|
7473
7452
|
|
|
7474
|
-
The following software may be included in this product: @types/
|
|
7453
|
+
The following software may be included in this product: @types/resolve (1.20.2)
|
|
7475
7454
|
This software contains the following license and notice below:
|
|
7476
7455
|
|
|
7477
7456
|
MIT License
|
|
@@ -7498,7 +7477,7 @@ SOFTWARE
|
|
|
7498
7477
|
|
|
7499
7478
|
---
|
|
7500
7479
|
|
|
7501
|
-
The following software may be included in this product: @types/
|
|
7480
|
+
The following software may be included in this product: @types/semver (7.5.8)
|
|
7502
7481
|
This software contains the following license and notice below:
|
|
7503
7482
|
|
|
7504
7483
|
MIT License
|
|
@@ -7525,7 +7504,7 @@ SOFTWARE
|
|
|
7525
7504
|
|
|
7526
7505
|
---
|
|
7527
7506
|
|
|
7528
|
-
The following software may be included in this product: @types/
|
|
7507
|
+
The following software may be included in this product: @types/unist (2.0.11)
|
|
7529
7508
|
This software contains the following license and notice below:
|
|
7530
7509
|
|
|
7531
7510
|
MIT License
|
|
@@ -7552,7 +7531,7 @@ SOFTWARE
|
|
|
7552
7531
|
|
|
7553
7532
|
---
|
|
7554
7533
|
|
|
7555
|
-
The following software may be included in this product: @types/unist (
|
|
7534
|
+
The following software may be included in this product: @types/unist (3.0.3)
|
|
7556
7535
|
This software contains the following license and notice below:
|
|
7557
7536
|
|
|
7558
7537
|
MIT License
|
|
@@ -7579,12 +7558,12 @@ SOFTWARE
|
|
|
7579
7558
|
|
|
7580
7559
|
---
|
|
7581
7560
|
|
|
7582
|
-
The following software may be included in this product: @
|
|
7561
|
+
The following software may be included in this product: @verdaccio/auth (8.1.1)
|
|
7583
7562
|
This software contains the following license and notice below:
|
|
7584
7563
|
|
|
7585
7564
|
MIT License
|
|
7586
7565
|
|
|
7587
|
-
Copyright (c)
|
|
7566
|
+
Copyright (c) 2025 Verdaccio contributors
|
|
7588
7567
|
|
|
7589
7568
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7590
7569
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -7602,11 +7581,11 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
7602
7581
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
7603
7582
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
7604
7583
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7605
|
-
SOFTWARE
|
|
7584
|
+
SOFTWARE.
|
|
7606
7585
|
|
|
7607
7586
|
---
|
|
7608
7587
|
|
|
7609
|
-
The following software may be included in this product: @verdaccio/
|
|
7588
|
+
The following software may be included in this product: @verdaccio/config (8.2.1)
|
|
7610
7589
|
This software contains the following license and notice below:
|
|
7611
7590
|
|
|
7612
7591
|
MIT License
|
|
@@ -7633,7 +7612,7 @@ SOFTWARE.
|
|
|
7633
7612
|
|
|
7634
7613
|
---
|
|
7635
7614
|
|
|
7636
|
-
The following software may be included in this product: @verdaccio/
|
|
7615
|
+
The following software may be included in this product: @verdaccio/core (8.2.1)
|
|
7637
7616
|
This software contains the following license and notice below:
|
|
7638
7617
|
|
|
7639
7618
|
MIT License
|
|
@@ -7660,7 +7639,7 @@ SOFTWARE.
|
|
|
7660
7639
|
|
|
7661
7640
|
---
|
|
7662
7641
|
|
|
7663
|
-
The following software may be included in this product: @verdaccio/
|
|
7642
|
+
The following software may be included in this product: @verdaccio/file-locking (13.1.0)
|
|
7664
7643
|
This software contains the following license and notice below:
|
|
7665
7644
|
|
|
7666
7645
|
MIT License
|
|
@@ -7687,7 +7666,7 @@ SOFTWARE.
|
|
|
7687
7666
|
|
|
7688
7667
|
---
|
|
7689
7668
|
|
|
7690
|
-
The following software may be included in this product: @verdaccio/
|
|
7669
|
+
The following software may be included in this product: @verdaccio/hooks (8.1.2)
|
|
7691
7670
|
This software contains the following license and notice below:
|
|
7692
7671
|
|
|
7693
7672
|
MIT License
|
|
@@ -7714,7 +7693,7 @@ SOFTWARE.
|
|
|
7714
7693
|
|
|
7715
7694
|
---
|
|
7716
7695
|
|
|
7717
|
-
The following software may be included in this product: @verdaccio/
|
|
7696
|
+
The following software may be included in this product: @verdaccio/loaders (8.1.1)
|
|
7718
7697
|
This software contains the following license and notice below:
|
|
7719
7698
|
|
|
7720
7699
|
MIT License
|
|
@@ -7741,7 +7720,34 @@ SOFTWARE.
|
|
|
7741
7720
|
|
|
7742
7721
|
---
|
|
7743
7722
|
|
|
7744
|
-
The following software may be included in this product: @verdaccio/
|
|
7723
|
+
The following software may be included in this product: @verdaccio/local-storage-legacy (11.4.1)
|
|
7724
|
+
This software contains the following license and notice below:
|
|
7725
|
+
|
|
7726
|
+
MIT License
|
|
7727
|
+
|
|
7728
|
+
Copyright (c) 2019 Verdaccio
|
|
7729
|
+
|
|
7730
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7731
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7732
|
+
in the Software without restriction, including without limitation the rights
|
|
7733
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7734
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
7735
|
+
furnished to do so, subject to the following conditions:
|
|
7736
|
+
|
|
7737
|
+
The above copyright notice and this permission notice shall be included in all
|
|
7738
|
+
copies or substantial portions of the Software.
|
|
7739
|
+
|
|
7740
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
7741
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
7742
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
7743
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
7744
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
7745
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7746
|
+
SOFTWARE.
|
|
7747
|
+
|
|
7748
|
+
---
|
|
7749
|
+
|
|
7750
|
+
The following software may be included in this product: @verdaccio/logger (8.1.1)
|
|
7745
7751
|
This software contains the following license and notice below:
|
|
7746
7752
|
|
|
7747
7753
|
MIT License
|
|
@@ -7768,7 +7774,169 @@ SOFTWARE.
|
|
|
7768
7774
|
|
|
7769
7775
|
---
|
|
7770
7776
|
|
|
7771
|
-
The following software may be included in this product: @verdaccio/
|
|
7777
|
+
The following software may be included in this product: @verdaccio/logger-commons (8.1.1)
|
|
7778
|
+
This software contains the following license and notice below:
|
|
7779
|
+
|
|
7780
|
+
MIT License
|
|
7781
|
+
|
|
7782
|
+
Copyright (c) 2025 Verdaccio contributors
|
|
7783
|
+
|
|
7784
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7785
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7786
|
+
in the Software without restriction, including without limitation the rights
|
|
7787
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7788
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
7789
|
+
furnished to do so, subject to the following conditions:
|
|
7790
|
+
|
|
7791
|
+
The above copyright notice and this permission notice shall be included in all
|
|
7792
|
+
copies or substantial portions of the Software.
|
|
7793
|
+
|
|
7794
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
7795
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
7796
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
7797
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
7798
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
7799
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7800
|
+
SOFTWARE.
|
|
7801
|
+
|
|
7802
|
+
---
|
|
7803
|
+
|
|
7804
|
+
The following software may be included in this product: @verdaccio/logger-prettify (8.1.0)
|
|
7805
|
+
This software contains the following license and notice below:
|
|
7806
|
+
|
|
7807
|
+
MIT License
|
|
7808
|
+
|
|
7809
|
+
Copyright (c) 2025 Verdaccio contributors
|
|
7810
|
+
|
|
7811
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7812
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7813
|
+
in the Software without restriction, including without limitation the rights
|
|
7814
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7815
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
7816
|
+
furnished to do so, subject to the following conditions:
|
|
7817
|
+
|
|
7818
|
+
The above copyright notice and this permission notice shall be included in all
|
|
7819
|
+
copies or substantial portions of the Software.
|
|
7820
|
+
|
|
7821
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
7822
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
7823
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
7824
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
7825
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
7826
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7827
|
+
SOFTWARE.
|
|
7828
|
+
|
|
7829
|
+
---
|
|
7830
|
+
|
|
7831
|
+
The following software may be included in this product: @verdaccio/middleware (8.1.1)
|
|
7832
|
+
This software contains the following license and notice below:
|
|
7833
|
+
|
|
7834
|
+
MIT License
|
|
7835
|
+
|
|
7836
|
+
Copyright (c) 2025 Verdaccio contributors
|
|
7837
|
+
|
|
7838
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7839
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7840
|
+
in the Software without restriction, including without limitation the rights
|
|
7841
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7842
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
7843
|
+
furnished to do so, subject to the following conditions:
|
|
7844
|
+
|
|
7845
|
+
The above copyright notice and this permission notice shall be included in all
|
|
7846
|
+
copies or substantial portions of the Software.
|
|
7847
|
+
|
|
7848
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
7849
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
7850
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
7851
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
7852
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
7853
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7854
|
+
SOFTWARE.
|
|
7855
|
+
|
|
7856
|
+
---
|
|
7857
|
+
|
|
7858
|
+
The following software may be included in this product: @verdaccio/package-filter (13.1.1)
|
|
7859
|
+
This software contains the following license and notice below:
|
|
7860
|
+
|
|
7861
|
+
MIT License
|
|
7862
|
+
|
|
7863
|
+
Copyright (c) 2025 Verdaccio contributors
|
|
7864
|
+
|
|
7865
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7866
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7867
|
+
in the Software without restriction, including without limitation the rights
|
|
7868
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7869
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
7870
|
+
furnished to do so, subject to the following conditions:
|
|
7871
|
+
|
|
7872
|
+
The above copyright notice and this permission notice shall be included in all
|
|
7873
|
+
copies or substantial portions of the Software.
|
|
7874
|
+
|
|
7875
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
7876
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
7877
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
7878
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
7879
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
7880
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7881
|
+
SOFTWARE.
|
|
7882
|
+
|
|
7883
|
+
---
|
|
7884
|
+
|
|
7885
|
+
The following software may be included in this product: @verdaccio/search-indexer (8.1.0)
|
|
7886
|
+
This software contains the following license and notice below:
|
|
7887
|
+
|
|
7888
|
+
MIT License
|
|
7889
|
+
|
|
7890
|
+
Copyright (c) 2025 Verdaccio contributors
|
|
7891
|
+
|
|
7892
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7893
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7894
|
+
in the Software without restriction, including without limitation the rights
|
|
7895
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7896
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
7897
|
+
furnished to do so, subject to the following conditions:
|
|
7898
|
+
|
|
7899
|
+
The above copyright notice and this permission notice shall be included in all
|
|
7900
|
+
copies or substantial portions of the Software.
|
|
7901
|
+
|
|
7902
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
7903
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
7904
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
7905
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
7906
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
7907
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7908
|
+
SOFTWARE.
|
|
7909
|
+
|
|
7910
|
+
---
|
|
7911
|
+
|
|
7912
|
+
The following software may be included in this product: @verdaccio/signature (8.1.1)
|
|
7913
|
+
This software contains the following license and notice below:
|
|
7914
|
+
|
|
7915
|
+
MIT License
|
|
7916
|
+
|
|
7917
|
+
Copyright (c) 2025 Verdaccio contributors
|
|
7918
|
+
|
|
7919
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7920
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7921
|
+
in the Software without restriction, including without limitation the rights
|
|
7922
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7923
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
7924
|
+
furnished to do so, subject to the following conditions:
|
|
7925
|
+
|
|
7926
|
+
The above copyright notice and this permission notice shall be included in all
|
|
7927
|
+
copies or substantial portions of the Software.
|
|
7928
|
+
|
|
7929
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
7930
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
7931
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
7932
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
7933
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
7934
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7935
|
+
SOFTWARE.
|
|
7936
|
+
|
|
7937
|
+
---
|
|
7938
|
+
|
|
7939
|
+
The following software may be included in this product: @verdaccio/streams (10.3.0)
|
|
7772
7940
|
This software contains the following license and notice below:
|
|
7773
7941
|
|
|
7774
7942
|
MIT License
|
|
@@ -7795,7 +7963,7 @@ SOFTWARE.
|
|
|
7795
7963
|
|
|
7796
7964
|
---
|
|
7797
7965
|
|
|
7798
|
-
The following software may be included in this product: @verdaccio/
|
|
7966
|
+
The following software may be included in this product: @verdaccio/tarball (13.1.1)
|
|
7799
7967
|
This software contains the following license and notice below:
|
|
7800
7968
|
|
|
7801
7969
|
MIT License
|
|
@@ -7822,7 +7990,7 @@ SOFTWARE.
|
|
|
7822
7990
|
|
|
7823
7991
|
---
|
|
7824
7992
|
|
|
7825
|
-
The following software may be included in this product: @verdaccio/
|
|
7993
|
+
The following software may be included in this product: @verdaccio/ui-theme (9.0.0-next-9.23)
|
|
7826
7994
|
This software contains the following license and notice below:
|
|
7827
7995
|
|
|
7828
7996
|
MIT License
|
|
@@ -7849,7 +8017,7 @@ SOFTWARE.
|
|
|
7849
8017
|
|
|
7850
8018
|
---
|
|
7851
8019
|
|
|
7852
|
-
The following software may be included in this product: @verdaccio/
|
|
8020
|
+
The following software may be included in this product: @verdaccio/url (13.1.1)
|
|
7853
8021
|
This software contains the following license and notice below:
|
|
7854
8022
|
|
|
7855
8023
|
MIT License
|
|
@@ -7876,7 +8044,7 @@ SOFTWARE.
|
|
|
7876
8044
|
|
|
7877
8045
|
---
|
|
7878
8046
|
|
|
7879
|
-
The following software may be included in this product: @verdaccio/
|
|
8047
|
+
The following software may be included in this product: @verdaccio/utils (8.2.1)
|
|
7880
8048
|
This software contains the following license and notice below:
|
|
7881
8049
|
|
|
7882
8050
|
MIT License
|
|
@@ -7903,12 +8071,12 @@ SOFTWARE.
|
|
|
7903
8071
|
|
|
7904
8072
|
---
|
|
7905
8073
|
|
|
7906
|
-
The following software may be included in this product: @
|
|
8074
|
+
The following software may be included in this product: @vitest/coverage-v8 (4.1.10)
|
|
7907
8075
|
This software contains the following license and notice below:
|
|
7908
8076
|
|
|
7909
8077
|
MIT License
|
|
7910
8078
|
|
|
7911
|
-
Copyright (c)
|
|
8079
|
+
Copyright (c) 2021-Present VoidZero Inc. and Vitest contributors
|
|
7912
8080
|
|
|
7913
8081
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7914
8082
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -7930,12 +8098,12 @@ SOFTWARE.
|
|
|
7930
8098
|
|
|
7931
8099
|
---
|
|
7932
8100
|
|
|
7933
|
-
The following software may be included in this product: @
|
|
8101
|
+
The following software may be included in this product: @vitest/expect (4.1.10)
|
|
7934
8102
|
This software contains the following license and notice below:
|
|
7935
8103
|
|
|
7936
8104
|
MIT License
|
|
7937
8105
|
|
|
7938
|
-
Copyright (c)
|
|
8106
|
+
Copyright (c) 2021-Present VoidZero Inc. and Vitest contributors
|
|
7939
8107
|
|
|
7940
8108
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7941
8109
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -7957,12 +8125,12 @@ SOFTWARE.
|
|
|
7957
8125
|
|
|
7958
8126
|
---
|
|
7959
8127
|
|
|
7960
|
-
The following software may be included in this product: @
|
|
8128
|
+
The following software may be included in this product: @vitest/mocker (4.1.10)
|
|
7961
8129
|
This software contains the following license and notice below:
|
|
7962
8130
|
|
|
7963
8131
|
MIT License
|
|
7964
8132
|
|
|
7965
|
-
Copyright (c)
|
|
8133
|
+
Copyright (c) 2021-Present VoidZero Inc. and Vitest contributors
|
|
7966
8134
|
|
|
7967
8135
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7968
8136
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -7984,12 +8152,12 @@ SOFTWARE.
|
|
|
7984
8152
|
|
|
7985
8153
|
---
|
|
7986
8154
|
|
|
7987
|
-
The following software may be included in this product: @
|
|
8155
|
+
The following software may be included in this product: @vitest/pretty-format (4.1.10)
|
|
7988
8156
|
This software contains the following license and notice below:
|
|
7989
8157
|
|
|
7990
8158
|
MIT License
|
|
7991
8159
|
|
|
7992
|
-
Copyright (c)
|
|
8160
|
+
Copyright (c) 2021-Present VoidZero Inc. and Vitest contributors
|
|
7993
8161
|
|
|
7994
8162
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7995
8163
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -8011,12 +8179,12 @@ SOFTWARE.
|
|
|
8011
8179
|
|
|
8012
8180
|
---
|
|
8013
8181
|
|
|
8014
|
-
The following software may be included in this product: @
|
|
8182
|
+
The following software may be included in this product: @vitest/runner (4.1.10)
|
|
8015
8183
|
This software contains the following license and notice below:
|
|
8016
8184
|
|
|
8017
8185
|
MIT License
|
|
8018
8186
|
|
|
8019
|
-
Copyright (c)
|
|
8187
|
+
Copyright (c) 2021-Present VoidZero Inc. and Vitest contributors
|
|
8020
8188
|
|
|
8021
8189
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8022
8190
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -8038,12 +8206,12 @@ SOFTWARE.
|
|
|
8038
8206
|
|
|
8039
8207
|
---
|
|
8040
8208
|
|
|
8041
|
-
The following software may be included in this product: @
|
|
8209
|
+
The following software may be included in this product: @vitest/snapshot (4.1.10)
|
|
8042
8210
|
This software contains the following license and notice below:
|
|
8043
8211
|
|
|
8044
8212
|
MIT License
|
|
8045
8213
|
|
|
8046
|
-
Copyright (c)
|
|
8214
|
+
Copyright (c) 2021-Present VoidZero Inc. and Vitest contributors
|
|
8047
8215
|
|
|
8048
8216
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8049
8217
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -8065,12 +8233,12 @@ SOFTWARE.
|
|
|
8065
8233
|
|
|
8066
8234
|
---
|
|
8067
8235
|
|
|
8068
|
-
The following software may be included in this product: @
|
|
8236
|
+
The following software may be included in this product: @vitest/spy (4.1.10)
|
|
8069
8237
|
This software contains the following license and notice below:
|
|
8070
8238
|
|
|
8071
8239
|
MIT License
|
|
8072
8240
|
|
|
8073
|
-
Copyright (c)
|
|
8241
|
+
Copyright (c) 2021-Present VoidZero Inc. and Vitest contributors
|
|
8074
8242
|
|
|
8075
8243
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8076
8244
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -8092,12 +8260,12 @@ SOFTWARE.
|
|
|
8092
8260
|
|
|
8093
8261
|
---
|
|
8094
8262
|
|
|
8095
|
-
The following software may be included in this product: @
|
|
8263
|
+
The following software may be included in this product: @vitest/ui (4.1.10)
|
|
8096
8264
|
This software contains the following license and notice below:
|
|
8097
8265
|
|
|
8098
8266
|
MIT License
|
|
8099
8267
|
|
|
8100
|
-
Copyright (c)
|
|
8268
|
+
Copyright (c) 2021-Present VoidZero Inc. and Vitest contributors
|
|
8101
8269
|
|
|
8102
8270
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8103
8271
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -8119,7 +8287,7 @@ SOFTWARE.
|
|
|
8119
8287
|
|
|
8120
8288
|
---
|
|
8121
8289
|
|
|
8122
|
-
The following software may be included in this product: @vitest/
|
|
8290
|
+
The following software may be included in this product: @vitest/utils (4.1.10)
|
|
8123
8291
|
This software contains the following license and notice below:
|
|
8124
8292
|
|
|
8125
8293
|
MIT License
|
|
@@ -8146,12 +8314,12 @@ SOFTWARE.
|
|
|
8146
8314
|
|
|
8147
8315
|
---
|
|
8148
8316
|
|
|
8149
|
-
The following software may be included in this product: @
|
|
8317
|
+
The following software may be included in this product: @webassemblyjs/ast (1.14.1)
|
|
8150
8318
|
This software contains the following license and notice below:
|
|
8151
8319
|
|
|
8152
8320
|
MIT License
|
|
8153
8321
|
|
|
8154
|
-
Copyright (c)
|
|
8322
|
+
Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
|
|
8155
8323
|
|
|
8156
8324
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8157
8325
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -8173,12 +8341,12 @@ SOFTWARE.
|
|
|
8173
8341
|
|
|
8174
8342
|
---
|
|
8175
8343
|
|
|
8176
|
-
The following software may be included in this product: @
|
|
8344
|
+
The following software may be included in this product: @webassemblyjs/floating-point-hex-parser (1.13.2)
|
|
8177
8345
|
This software contains the following license and notice below:
|
|
8178
8346
|
|
|
8179
8347
|
MIT License
|
|
8180
8348
|
|
|
8181
|
-
Copyright (c)
|
|
8349
|
+
Copyright (c) 2017 Mauro Bringolf
|
|
8182
8350
|
|
|
8183
8351
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8184
8352
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -8200,12 +8368,12 @@ SOFTWARE.
|
|
|
8200
8368
|
|
|
8201
8369
|
---
|
|
8202
8370
|
|
|
8203
|
-
The following software may be included in this product: @
|
|
8371
|
+
The following software may be included in this product: @webassemblyjs/helper-api-error (1.13.2)
|
|
8204
8372
|
This software contains the following license and notice below:
|
|
8205
8373
|
|
|
8206
8374
|
MIT License
|
|
8207
8375
|
|
|
8208
|
-
Copyright (c)
|
|
8376
|
+
Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
|
|
8209
8377
|
|
|
8210
8378
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8211
8379
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -8227,12 +8395,12 @@ SOFTWARE.
|
|
|
8227
8395
|
|
|
8228
8396
|
---
|
|
8229
8397
|
|
|
8230
|
-
The following software may be included in this product: @
|
|
8398
|
+
The following software may be included in this product: @webassemblyjs/helper-buffer (1.14.1)
|
|
8231
8399
|
This software contains the following license and notice below:
|
|
8232
8400
|
|
|
8233
8401
|
MIT License
|
|
8234
8402
|
|
|
8235
|
-
Copyright (c)
|
|
8403
|
+
Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
|
|
8236
8404
|
|
|
8237
8405
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8238
8406
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -8254,12 +8422,12 @@ SOFTWARE.
|
|
|
8254
8422
|
|
|
8255
8423
|
---
|
|
8256
8424
|
|
|
8257
|
-
The following software may be included in this product: @
|
|
8425
|
+
The following software may be included in this product: @webassemblyjs/helper-numbers (1.13.2)
|
|
8258
8426
|
This software contains the following license and notice below:
|
|
8259
8427
|
|
|
8260
8428
|
MIT License
|
|
8261
8429
|
|
|
8262
|
-
Copyright (c)
|
|
8430
|
+
Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
|
|
8263
8431
|
|
|
8264
8432
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8265
8433
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -8281,12 +8449,12 @@ SOFTWARE.
|
|
|
8281
8449
|
|
|
8282
8450
|
---
|
|
8283
8451
|
|
|
8284
|
-
The following software may be included in this product: @
|
|
8452
|
+
The following software may be included in this product: @webassemblyjs/helper-wasm-bytecode (1.13.2)
|
|
8285
8453
|
This software contains the following license and notice below:
|
|
8286
8454
|
|
|
8287
8455
|
MIT License
|
|
8288
8456
|
|
|
8289
|
-
Copyright (c)
|
|
8457
|
+
Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
|
|
8290
8458
|
|
|
8291
8459
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8292
8460
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -8308,12 +8476,12 @@ SOFTWARE.
|
|
|
8308
8476
|
|
|
8309
8477
|
---
|
|
8310
8478
|
|
|
8311
|
-
The following software may be included in this product: @
|
|
8479
|
+
The following software may be included in this product: @webassemblyjs/helper-wasm-section (1.14.1)
|
|
8312
8480
|
This software contains the following license and notice below:
|
|
8313
8481
|
|
|
8314
8482
|
MIT License
|
|
8315
8483
|
|
|
8316
|
-
Copyright (c)
|
|
8484
|
+
Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
|
|
8317
8485
|
|
|
8318
8486
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8319
8487
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -8335,12 +8503,12 @@ SOFTWARE.
|
|
|
8335
8503
|
|
|
8336
8504
|
---
|
|
8337
8505
|
|
|
8338
|
-
The following software may be included in this product: @
|
|
8506
|
+
The following software may be included in this product: @webassemblyjs/ieee754 (1.13.2)
|
|
8339
8507
|
This software contains the following license and notice below:
|
|
8340
8508
|
|
|
8341
8509
|
MIT License
|
|
8342
8510
|
|
|
8343
|
-
Copyright (c)
|
|
8511
|
+
Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
|
|
8344
8512
|
|
|
8345
8513
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8346
8514
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -8362,7 +8530,7 @@ SOFTWARE.
|
|
|
8362
8530
|
|
|
8363
8531
|
---
|
|
8364
8532
|
|
|
8365
|
-
The following software may be included in this product: @webassemblyjs/
|
|
8533
|
+
The following software may be included in this product: @webassemblyjs/utf8 (1.13.2)
|
|
8366
8534
|
This software contains the following license and notice below:
|
|
8367
8535
|
|
|
8368
8536
|
MIT License
|
|
@@ -8389,12 +8557,12 @@ SOFTWARE.
|
|
|
8389
8557
|
|
|
8390
8558
|
---
|
|
8391
8559
|
|
|
8392
|
-
The following software may be included in this product: @webassemblyjs/
|
|
8560
|
+
The following software may be included in this product: @webassemblyjs/wasm-edit (1.14.1)
|
|
8393
8561
|
This software contains the following license and notice below:
|
|
8394
8562
|
|
|
8395
8563
|
MIT License
|
|
8396
8564
|
|
|
8397
|
-
Copyright (c)
|
|
8565
|
+
Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
|
|
8398
8566
|
|
|
8399
8567
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8400
8568
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -8416,7 +8584,7 @@ SOFTWARE.
|
|
|
8416
8584
|
|
|
8417
8585
|
---
|
|
8418
8586
|
|
|
8419
|
-
The following software may be included in this product: @webassemblyjs/
|
|
8587
|
+
The following software may be included in this product: @webassemblyjs/wasm-gen (1.14.1)
|
|
8420
8588
|
This software contains the following license and notice below:
|
|
8421
8589
|
|
|
8422
8590
|
MIT License
|
|
@@ -8443,7 +8611,7 @@ SOFTWARE.
|
|
|
8443
8611
|
|
|
8444
8612
|
---
|
|
8445
8613
|
|
|
8446
|
-
The following software may be included in this product: @webassemblyjs/
|
|
8614
|
+
The following software may be included in this product: @webassemblyjs/wasm-opt (1.14.1)
|
|
8447
8615
|
This software contains the following license and notice below:
|
|
8448
8616
|
|
|
8449
8617
|
MIT License
|
|
@@ -8470,7 +8638,7 @@ SOFTWARE.
|
|
|
8470
8638
|
|
|
8471
8639
|
---
|
|
8472
8640
|
|
|
8473
|
-
The following software may be included in this product: @webassemblyjs/
|
|
8641
|
+
The following software may be included in this product: @webassemblyjs/wasm-parser (1.14.1)
|
|
8474
8642
|
This software contains the following license and notice below:
|
|
8475
8643
|
|
|
8476
8644
|
MIT License
|
|
@@ -8497,7 +8665,7 @@ SOFTWARE.
|
|
|
8497
8665
|
|
|
8498
8666
|
---
|
|
8499
8667
|
|
|
8500
|
-
The following software may be included in this product: @webassemblyjs/
|
|
8668
|
+
The following software may be included in this product: @webassemblyjs/wast-printer (1.14.1)
|
|
8501
8669
|
This software contains the following license and notice below:
|
|
8502
8670
|
|
|
8503
8671
|
MIT License
|
|
@@ -8524,12 +8692,12 @@ SOFTWARE.
|
|
|
8524
8692
|
|
|
8525
8693
|
---
|
|
8526
8694
|
|
|
8527
|
-
The following software may be included in this product: @
|
|
8695
|
+
The following software may be included in this product: @xhmikosr/archive-type (8.1.0)
|
|
8528
8696
|
This software contains the following license and notice below:
|
|
8529
8697
|
|
|
8530
|
-
MIT License
|
|
8698
|
+
The MIT License (MIT)
|
|
8531
8699
|
|
|
8532
|
-
Copyright (c)
|
|
8700
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com>
|
|
8533
8701
|
|
|
8534
8702
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8535
8703
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -8538,25 +8706,127 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
8538
8706
|
copies of the Software, and to permit persons to whom the Software is
|
|
8539
8707
|
furnished to do so, subject to the following conditions:
|
|
8540
8708
|
|
|
8541
|
-
The above copyright notice and this permission notice shall be included in
|
|
8542
|
-
copies or substantial portions of the Software.
|
|
8709
|
+
The above copyright notice and this permission notice shall be included in
|
|
8710
|
+
all copies or substantial portions of the Software.
|
|
8543
8711
|
|
|
8544
8712
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8545
8713
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8546
8714
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8547
8715
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8548
8716
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8549
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
8550
|
-
SOFTWARE.
|
|
8717
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
8718
|
+
THE SOFTWARE.
|
|
8551
8719
|
|
|
8552
8720
|
---
|
|
8553
8721
|
|
|
8554
|
-
The following software may be included in this product: @
|
|
8722
|
+
The following software may be included in this product: @xhmikosr/bin-check (8.2.2)
|
|
8723
|
+
This software contains the following license and notice below:
|
|
8724
|
+
|
|
8725
|
+
The MIT License (MIT)
|
|
8726
|
+
|
|
8727
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
8728
|
+
|
|
8729
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8730
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8731
|
+
in the Software without restriction, including without limitation the rights
|
|
8732
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8733
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
8734
|
+
furnished to do so, subject to the following conditions:
|
|
8735
|
+
|
|
8736
|
+
The above copyright notice and this permission notice shall be included in
|
|
8737
|
+
all copies or substantial portions of the Software.
|
|
8738
|
+
|
|
8739
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8740
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8741
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8742
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8743
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8744
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
8745
|
+
THE SOFTWARE.
|
|
8746
|
+
|
|
8747
|
+
---
|
|
8748
|
+
|
|
8749
|
+
The following software may be included in this product: @xhmikosr/bin-wrapper (14.4.0)
|
|
8555
8750
|
This software contains the following license and notice below:
|
|
8556
8751
|
|
|
8557
8752
|
MIT License
|
|
8558
8753
|
|
|
8559
|
-
Copyright (c)
|
|
8754
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com>
|
|
8755
|
+
|
|
8756
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8757
|
+
|
|
8758
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8759
|
+
|
|
8760
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8761
|
+
|
|
8762
|
+
---
|
|
8763
|
+
|
|
8764
|
+
The following software may be included in this product: @xhmikosr/decompress (11.1.3)
|
|
8765
|
+
This software contains the following license and notice below:
|
|
8766
|
+
|
|
8767
|
+
MIT License
|
|
8768
|
+
|
|
8769
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
8770
|
+
|
|
8771
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8772
|
+
|
|
8773
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8774
|
+
|
|
8775
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8776
|
+
|
|
8777
|
+
---
|
|
8778
|
+
|
|
8779
|
+
The following software may be included in this product: @xhmikosr/decompress-tar (9.0.1)
|
|
8780
|
+
This software contains the following license and notice below:
|
|
8781
|
+
|
|
8782
|
+
MIT License
|
|
8783
|
+
|
|
8784
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
8785
|
+
|
|
8786
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8787
|
+
|
|
8788
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8789
|
+
|
|
8790
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8791
|
+
|
|
8792
|
+
---
|
|
8793
|
+
|
|
8794
|
+
The following software may be included in this product: @xhmikosr/decompress-tarbz2 (9.0.2)
|
|
8795
|
+
This software contains the following license and notice below:
|
|
8796
|
+
|
|
8797
|
+
MIT License
|
|
8798
|
+
|
|
8799
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
8800
|
+
|
|
8801
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8802
|
+
|
|
8803
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8804
|
+
|
|
8805
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8806
|
+
|
|
8807
|
+
---
|
|
8808
|
+
|
|
8809
|
+
The following software may be included in this product: @xhmikosr/decompress-targz (9.0.1)
|
|
8810
|
+
This software contains the following license and notice below:
|
|
8811
|
+
|
|
8812
|
+
MIT License
|
|
8813
|
+
|
|
8814
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
8815
|
+
|
|
8816
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8817
|
+
|
|
8818
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8819
|
+
|
|
8820
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8821
|
+
|
|
8822
|
+
---
|
|
8823
|
+
|
|
8824
|
+
The following software may be included in this product: @xhmikosr/decompress-unzip (8.2.1)
|
|
8825
|
+
This software contains the following license and notice below:
|
|
8826
|
+
|
|
8827
|
+
The MIT License (MIT)
|
|
8828
|
+
|
|
8829
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com>
|
|
8560
8830
|
|
|
8561
8831
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8562
8832
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -8565,25 +8835,55 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
8565
8835
|
copies of the Software, and to permit persons to whom the Software is
|
|
8566
8836
|
furnished to do so, subject to the following conditions:
|
|
8567
8837
|
|
|
8568
|
-
The above copyright notice and this permission notice shall be included in
|
|
8569
|
-
copies or substantial portions of the Software.
|
|
8838
|
+
The above copyright notice and this permission notice shall be included in
|
|
8839
|
+
all copies or substantial portions of the Software.
|
|
8570
8840
|
|
|
8571
8841
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8572
8842
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8573
8843
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8574
8844
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8575
8845
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8576
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
8577
|
-
SOFTWARE.
|
|
8846
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
8847
|
+
THE SOFTWARE.
|
|
8578
8848
|
|
|
8579
8849
|
---
|
|
8580
8850
|
|
|
8581
|
-
The following software may be included in this product: @
|
|
8851
|
+
The following software may be included in this product: @xhmikosr/downloader (16.2.0)
|
|
8582
8852
|
This software contains the following license and notice below:
|
|
8583
8853
|
|
|
8584
8854
|
MIT License
|
|
8585
8855
|
|
|
8586
|
-
Copyright (c)
|
|
8856
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
8857
|
+
|
|
8858
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8859
|
+
|
|
8860
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8861
|
+
|
|
8862
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8863
|
+
|
|
8864
|
+
---
|
|
8865
|
+
|
|
8866
|
+
The following software may be included in this product: @xhmikosr/os-filter-obj (4.1.0)
|
|
8867
|
+
This software contains the following license and notice below:
|
|
8868
|
+
|
|
8869
|
+
MIT License
|
|
8870
|
+
|
|
8871
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
8872
|
+
|
|
8873
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8874
|
+
|
|
8875
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8876
|
+
|
|
8877
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8878
|
+
|
|
8879
|
+
---
|
|
8880
|
+
|
|
8881
|
+
The following software may be included in this product: @zkochan/js-yaml (0.0.7)
|
|
8882
|
+
This software contains the following license and notice below:
|
|
8883
|
+
|
|
8884
|
+
(The MIT License)
|
|
8885
|
+
|
|
8886
|
+
Copyright (C) 2011-2015 by Vitaly Puzrin
|
|
8587
8887
|
|
|
8588
8888
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8589
8889
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -8592,373 +8892,25 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
8592
8892
|
copies of the Software, and to permit persons to whom the Software is
|
|
8593
8893
|
furnished to do so, subject to the following conditions:
|
|
8594
8894
|
|
|
8595
|
-
The above copyright notice and this permission notice shall be included in
|
|
8596
|
-
copies or substantial portions of the Software.
|
|
8895
|
+
The above copyright notice and this permission notice shall be included in
|
|
8896
|
+
all copies or substantial portions of the Software.
|
|
8597
8897
|
|
|
8598
8898
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8599
8899
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8600
8900
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8601
8901
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8602
8902
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8603
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
8604
|
-
SOFTWARE.
|
|
8903
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
8904
|
+
THE SOFTWARE.
|
|
8605
8905
|
|
|
8606
8906
|
---
|
|
8607
8907
|
|
|
8608
|
-
The following software may be included in this product:
|
|
8908
|
+
The following software may be included in this product: abort-controller (3.0.0)
|
|
8609
8909
|
This software contains the following license and notice below:
|
|
8610
8910
|
|
|
8611
8911
|
MIT License
|
|
8612
8912
|
|
|
8613
|
-
Copyright (c)
|
|
8614
|
-
|
|
8615
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8616
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
8617
|
-
in the Software without restriction, including without limitation the rights
|
|
8618
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8619
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
8620
|
-
furnished to do so, subject to the following conditions:
|
|
8621
|
-
|
|
8622
|
-
The above copyright notice and this permission notice shall be included in all
|
|
8623
|
-
copies or substantial portions of the Software.
|
|
8624
|
-
|
|
8625
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8626
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8627
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8628
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8629
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8630
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
8631
|
-
SOFTWARE.
|
|
8632
|
-
|
|
8633
|
-
---
|
|
8634
|
-
|
|
8635
|
-
The following software may be included in this product: @webassemblyjs/wasm-gen (1.14.1)
|
|
8636
|
-
This software contains the following license and notice below:
|
|
8637
|
-
|
|
8638
|
-
MIT License
|
|
8639
|
-
|
|
8640
|
-
Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
|
|
8641
|
-
|
|
8642
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8643
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
8644
|
-
in the Software without restriction, including without limitation the rights
|
|
8645
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8646
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
8647
|
-
furnished to do so, subject to the following conditions:
|
|
8648
|
-
|
|
8649
|
-
The above copyright notice and this permission notice shall be included in all
|
|
8650
|
-
copies or substantial portions of the Software.
|
|
8651
|
-
|
|
8652
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8653
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8654
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8655
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8656
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8657
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
8658
|
-
SOFTWARE.
|
|
8659
|
-
|
|
8660
|
-
---
|
|
8661
|
-
|
|
8662
|
-
The following software may be included in this product: @webassemblyjs/wasm-opt (1.14.1)
|
|
8663
|
-
This software contains the following license and notice below:
|
|
8664
|
-
|
|
8665
|
-
MIT License
|
|
8666
|
-
|
|
8667
|
-
Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
|
|
8668
|
-
|
|
8669
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8670
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
8671
|
-
in the Software without restriction, including without limitation the rights
|
|
8672
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8673
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
8674
|
-
furnished to do so, subject to the following conditions:
|
|
8675
|
-
|
|
8676
|
-
The above copyright notice and this permission notice shall be included in all
|
|
8677
|
-
copies or substantial portions of the Software.
|
|
8678
|
-
|
|
8679
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8680
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8681
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8682
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8683
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8684
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
8685
|
-
SOFTWARE.
|
|
8686
|
-
|
|
8687
|
-
---
|
|
8688
|
-
|
|
8689
|
-
The following software may be included in this product: @webassemblyjs/wasm-parser (1.14.1)
|
|
8690
|
-
This software contains the following license and notice below:
|
|
8691
|
-
|
|
8692
|
-
MIT License
|
|
8693
|
-
|
|
8694
|
-
Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
|
|
8695
|
-
|
|
8696
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8697
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
8698
|
-
in the Software without restriction, including without limitation the rights
|
|
8699
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8700
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
8701
|
-
furnished to do so, subject to the following conditions:
|
|
8702
|
-
|
|
8703
|
-
The above copyright notice and this permission notice shall be included in all
|
|
8704
|
-
copies or substantial portions of the Software.
|
|
8705
|
-
|
|
8706
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8707
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8708
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8709
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8710
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8711
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
8712
|
-
SOFTWARE.
|
|
8713
|
-
|
|
8714
|
-
---
|
|
8715
|
-
|
|
8716
|
-
The following software may be included in this product: @webassemblyjs/wast-printer (1.14.1)
|
|
8717
|
-
This software contains the following license and notice below:
|
|
8718
|
-
|
|
8719
|
-
MIT License
|
|
8720
|
-
|
|
8721
|
-
Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
|
|
8722
|
-
|
|
8723
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8724
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
8725
|
-
in the Software without restriction, including without limitation the rights
|
|
8726
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8727
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
8728
|
-
furnished to do so, subject to the following conditions:
|
|
8729
|
-
|
|
8730
|
-
The above copyright notice and this permission notice shall be included in all
|
|
8731
|
-
copies or substantial portions of the Software.
|
|
8732
|
-
|
|
8733
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8734
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8735
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8736
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8737
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8738
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
8739
|
-
SOFTWARE.
|
|
8740
|
-
|
|
8741
|
-
---
|
|
8742
|
-
|
|
8743
|
-
The following software may be included in this product: @xhmikosr/archive-type (8.1.0)
|
|
8744
|
-
This software contains the following license and notice below:
|
|
8745
|
-
|
|
8746
|
-
The MIT License (MIT)
|
|
8747
|
-
|
|
8748
|
-
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com>
|
|
8749
|
-
|
|
8750
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8751
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
8752
|
-
in the Software without restriction, including without limitation the rights
|
|
8753
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8754
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
8755
|
-
furnished to do so, subject to the following conditions:
|
|
8756
|
-
|
|
8757
|
-
The above copyright notice and this permission notice shall be included in
|
|
8758
|
-
all copies or substantial portions of the Software.
|
|
8759
|
-
|
|
8760
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8761
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8762
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8763
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8764
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8765
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
8766
|
-
THE SOFTWARE.
|
|
8767
|
-
|
|
8768
|
-
---
|
|
8769
|
-
|
|
8770
|
-
The following software may be included in this product: @xhmikosr/bin-check (8.2.2)
|
|
8771
|
-
This software contains the following license and notice below:
|
|
8772
|
-
|
|
8773
|
-
The MIT License (MIT)
|
|
8774
|
-
|
|
8775
|
-
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
8776
|
-
|
|
8777
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8778
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
8779
|
-
in the Software without restriction, including without limitation the rights
|
|
8780
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8781
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
8782
|
-
furnished to do so, subject to the following conditions:
|
|
8783
|
-
|
|
8784
|
-
The above copyright notice and this permission notice shall be included in
|
|
8785
|
-
all copies or substantial portions of the Software.
|
|
8786
|
-
|
|
8787
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8788
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8789
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8790
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8791
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8792
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
8793
|
-
THE SOFTWARE.
|
|
8794
|
-
|
|
8795
|
-
---
|
|
8796
|
-
|
|
8797
|
-
The following software may be included in this product: @xhmikosr/bin-wrapper (14.4.0)
|
|
8798
|
-
This software contains the following license and notice below:
|
|
8799
|
-
|
|
8800
|
-
MIT License
|
|
8801
|
-
|
|
8802
|
-
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com>
|
|
8803
|
-
|
|
8804
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8805
|
-
|
|
8806
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8807
|
-
|
|
8808
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8809
|
-
|
|
8810
|
-
---
|
|
8811
|
-
|
|
8812
|
-
The following software may be included in this product: @xhmikosr/decompress (11.1.3)
|
|
8813
|
-
This software contains the following license and notice below:
|
|
8814
|
-
|
|
8815
|
-
MIT License
|
|
8816
|
-
|
|
8817
|
-
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
8818
|
-
|
|
8819
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8820
|
-
|
|
8821
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8822
|
-
|
|
8823
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8824
|
-
|
|
8825
|
-
---
|
|
8826
|
-
|
|
8827
|
-
The following software may be included in this product: @xhmikosr/decompress-tar (9.0.1)
|
|
8828
|
-
This software contains the following license and notice below:
|
|
8829
|
-
|
|
8830
|
-
MIT License
|
|
8831
|
-
|
|
8832
|
-
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
8833
|
-
|
|
8834
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8835
|
-
|
|
8836
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8837
|
-
|
|
8838
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8839
|
-
|
|
8840
|
-
---
|
|
8841
|
-
|
|
8842
|
-
The following software may be included in this product: @xhmikosr/decompress-tarbz2 (9.0.2)
|
|
8843
|
-
This software contains the following license and notice below:
|
|
8844
|
-
|
|
8845
|
-
MIT License
|
|
8846
|
-
|
|
8847
|
-
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
8848
|
-
|
|
8849
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8850
|
-
|
|
8851
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8852
|
-
|
|
8853
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8854
|
-
|
|
8855
|
-
---
|
|
8856
|
-
|
|
8857
|
-
The following software may be included in this product: @xhmikosr/decompress-targz (9.0.1)
|
|
8858
|
-
This software contains the following license and notice below:
|
|
8859
|
-
|
|
8860
|
-
MIT License
|
|
8861
|
-
|
|
8862
|
-
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
8863
|
-
|
|
8864
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8865
|
-
|
|
8866
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8867
|
-
|
|
8868
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8869
|
-
|
|
8870
|
-
---
|
|
8871
|
-
|
|
8872
|
-
The following software may be included in this product: @xhmikosr/decompress-unzip (8.2.1)
|
|
8873
|
-
This software contains the following license and notice below:
|
|
8874
|
-
|
|
8875
|
-
The MIT License (MIT)
|
|
8876
|
-
|
|
8877
|
-
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com>
|
|
8878
|
-
|
|
8879
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8880
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
8881
|
-
in the Software without restriction, including without limitation the rights
|
|
8882
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8883
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
8884
|
-
furnished to do so, subject to the following conditions:
|
|
8885
|
-
|
|
8886
|
-
The above copyright notice and this permission notice shall be included in
|
|
8887
|
-
all copies or substantial portions of the Software.
|
|
8888
|
-
|
|
8889
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8890
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8891
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8892
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8893
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8894
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
8895
|
-
THE SOFTWARE.
|
|
8896
|
-
|
|
8897
|
-
---
|
|
8898
|
-
|
|
8899
|
-
The following software may be included in this product: @xhmikosr/downloader (16.2.0)
|
|
8900
|
-
This software contains the following license and notice below:
|
|
8901
|
-
|
|
8902
|
-
MIT License
|
|
8903
|
-
|
|
8904
|
-
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
8905
|
-
|
|
8906
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8907
|
-
|
|
8908
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8909
|
-
|
|
8910
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8911
|
-
|
|
8912
|
-
---
|
|
8913
|
-
|
|
8914
|
-
The following software may be included in this product: @xhmikosr/os-filter-obj (4.1.0)
|
|
8915
|
-
This software contains the following license and notice below:
|
|
8916
|
-
|
|
8917
|
-
MIT License
|
|
8918
|
-
|
|
8919
|
-
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
8920
|
-
|
|
8921
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8922
|
-
|
|
8923
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8924
|
-
|
|
8925
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8926
|
-
|
|
8927
|
-
---
|
|
8928
|
-
|
|
8929
|
-
The following software may be included in this product: @zkochan/js-yaml (0.0.7)
|
|
8930
|
-
This software contains the following license and notice below:
|
|
8931
|
-
|
|
8932
|
-
(The MIT License)
|
|
8933
|
-
|
|
8934
|
-
Copyright (C) 2011-2015 by Vitaly Puzrin
|
|
8935
|
-
|
|
8936
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8937
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
8938
|
-
in the Software without restriction, including without limitation the rights
|
|
8939
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8940
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
8941
|
-
furnished to do so, subject to the following conditions:
|
|
8942
|
-
|
|
8943
|
-
The above copyright notice and this permission notice shall be included in
|
|
8944
|
-
all copies or substantial portions of the Software.
|
|
8945
|
-
|
|
8946
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8947
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8948
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8949
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8950
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8951
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
8952
|
-
THE SOFTWARE.
|
|
8953
|
-
|
|
8954
|
-
---
|
|
8955
|
-
|
|
8956
|
-
The following software may be included in this product: abort-controller (3.0.0)
|
|
8957
|
-
This software contains the following license and notice below:
|
|
8958
|
-
|
|
8959
|
-
MIT License
|
|
8960
|
-
|
|
8961
|
-
Copyright (c) 2017 Toru Nagashima
|
|
8913
|
+
Copyright (c) 2017 Toru Nagashima
|
|
8962
8914
|
|
|
8963
8915
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8964
8916
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -11718,7 +11670,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
11718
11670
|
|
|
11719
11671
|
---
|
|
11720
11672
|
|
|
11721
|
-
The following software may be included in this product: content-disposition (1.0.
|
|
11673
|
+
The following software may be included in this product: content-disposition (1.0.1)
|
|
11722
11674
|
This software contains the following license and notice below:
|
|
11723
11675
|
|
|
11724
11676
|
(The MIT License)
|
|
@@ -14125,7 +14077,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
14125
14077
|
|
|
14126
14078
|
---
|
|
14127
14079
|
|
|
14128
|
-
The following software may be included in this product: express-rate-limit (8.2
|
|
14080
|
+
The following software may be included in this product: express-rate-limit (8.6.2)
|
|
14129
14081
|
This software contains the following license and notice below:
|
|
14130
14082
|
|
|
14131
14083
|
# MIT License
|
|
@@ -15673,7 +15625,7 @@ SOFTWARE.
|
|
|
15673
15625
|
|
|
15674
15626
|
---
|
|
15675
15627
|
|
|
15676
|
-
The following software may be included in this product: hono (4.
|
|
15628
|
+
The following software may be included in this product: hono (4.13.3)
|
|
15677
15629
|
This software contains the following license and notice below:
|
|
15678
15630
|
|
|
15679
15631
|
MIT License
|
|
@@ -16215,7 +16167,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
16215
16167
|
|
|
16216
16168
|
---
|
|
16217
16169
|
|
|
16218
|
-
The following software may be included in this product: ip-address (10.0
|
|
16170
|
+
The following software may be included in this product: ip-address (10.5.0)
|
|
16219
16171
|
This software contains the following license and notice below:
|
|
16220
16172
|
|
|
16221
16173
|
Copyright (C) 2011 by Beau Gunderson
|
|
@@ -17873,7 +17825,7 @@ THE SOFTWARE.
|
|
|
17873
17825
|
|
|
17874
17826
|
---
|
|
17875
17827
|
|
|
17876
|
-
The following software may be included in this product: koa (3.
|
|
17828
|
+
The following software may be included in this product: koa (3.2.1)
|
|
17877
17829
|
This software contains the following license and notice below:
|
|
17878
17830
|
|
|
17879
17831
|
(The MIT License)
|
|
@@ -23936,691 +23888,6 @@ The licenses of externally maintained libraries from which parts of the Software
|
|
|
23936
23888
|
|
|
23937
23889
|
---
|
|
23938
23890
|
|
|
23939
|
-
The following software may be included in this product: rollup (4.50.1)
|
|
23940
|
-
This software contains the following license and notice below:
|
|
23941
|
-
|
|
23942
|
-
# Rollup core license
|
|
23943
|
-
Rollup is released under the MIT license:
|
|
23944
|
-
|
|
23945
|
-
The MIT License (MIT)
|
|
23946
|
-
|
|
23947
|
-
Copyright (c) 2017 [these people](https://github.com/rollup/rollup/graphs/contributors)
|
|
23948
|
-
|
|
23949
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
23950
|
-
|
|
23951
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
23952
|
-
|
|
23953
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
23954
|
-
|
|
23955
|
-
# Licenses of bundled dependencies
|
|
23956
|
-
The published Rollup artifact additionally contains code with the following licenses:
|
|
23957
|
-
MIT, ISC, 0BSD
|
|
23958
|
-
|
|
23959
|
-
# Bundled dependencies:
|
|
23960
|
-
## @jridgewell/sourcemap-codec
|
|
23961
|
-
License: MIT
|
|
23962
|
-
By: Justin Ridgewell
|
|
23963
|
-
Repository: git+https://github.com/jridgewell/sourcemaps.git
|
|
23964
|
-
|
|
23965
|
-
> Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
|
|
23966
|
-
>
|
|
23967
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
23968
|
-
> of this software and associated documentation files (the "Software"), to deal
|
|
23969
|
-
> in the Software without restriction, including without limitation the rights
|
|
23970
|
-
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
23971
|
-
> copies of the Software, and to permit persons to whom the Software is
|
|
23972
|
-
> furnished to do so, subject to the following conditions:
|
|
23973
|
-
>
|
|
23974
|
-
> The above copyright notice and this permission notice shall be included in
|
|
23975
|
-
> all copies or substantial portions of the Software.
|
|
23976
|
-
>
|
|
23977
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
23978
|
-
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23979
|
-
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23980
|
-
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
23981
|
-
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
23982
|
-
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
23983
|
-
> SOFTWARE.
|
|
23984
|
-
|
|
23985
|
-
---------------------------------------
|
|
23986
|
-
|
|
23987
|
-
## @rollup/pluginutils
|
|
23988
|
-
License: MIT
|
|
23989
|
-
By: Rich Harris
|
|
23990
|
-
Repository: rollup/plugins
|
|
23991
|
-
|
|
23992
|
-
> The MIT License (MIT)
|
|
23993
|
-
>
|
|
23994
|
-
> Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
|
|
23995
|
-
>
|
|
23996
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
23997
|
-
> of this software and associated documentation files (the "Software"), to deal
|
|
23998
|
-
> in the Software without restriction, including without limitation the rights
|
|
23999
|
-
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
24000
|
-
> copies of the Software, and to permit persons to whom the Software is
|
|
24001
|
-
> furnished to do so, subject to the following conditions:
|
|
24002
|
-
>
|
|
24003
|
-
> The above copyright notice and this permission notice shall be included in
|
|
24004
|
-
> all copies or substantial portions of the Software.
|
|
24005
|
-
>
|
|
24006
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
24007
|
-
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24008
|
-
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24009
|
-
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24010
|
-
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24011
|
-
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
24012
|
-
> THE SOFTWARE.
|
|
24013
|
-
|
|
24014
|
-
---------------------------------------
|
|
24015
|
-
|
|
24016
|
-
## anymatch
|
|
24017
|
-
License: ISC
|
|
24018
|
-
By: Elan Shanker
|
|
24019
|
-
Repository: https://github.com/micromatch/anymatch
|
|
24020
|
-
|
|
24021
|
-
> The ISC License
|
|
24022
|
-
>
|
|
24023
|
-
> Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com)
|
|
24024
|
-
>
|
|
24025
|
-
> Permission to use, copy, modify, and/or distribute this software for any
|
|
24026
|
-
> purpose with or without fee is hereby granted, provided that the above
|
|
24027
|
-
> copyright notice and this permission notice appear in all copies.
|
|
24028
|
-
>
|
|
24029
|
-
> THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
24030
|
-
> WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
24031
|
-
> MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
24032
|
-
> ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
24033
|
-
> WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
24034
|
-
> ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
24035
|
-
> IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
24036
|
-
|
|
24037
|
-
---------------------------------------
|
|
24038
|
-
|
|
24039
|
-
## binary-extensions
|
|
24040
|
-
License: MIT
|
|
24041
|
-
By: Sindre Sorhus
|
|
24042
|
-
Repository: sindresorhus/binary-extensions
|
|
24043
|
-
|
|
24044
|
-
> MIT License
|
|
24045
|
-
>
|
|
24046
|
-
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
24047
|
-
> Copyright (c) Paul Miller (https://paulmillr.com)
|
|
24048
|
-
>
|
|
24049
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
24050
|
-
>
|
|
24051
|
-
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
24052
|
-
>
|
|
24053
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
24054
|
-
|
|
24055
|
-
---------------------------------------
|
|
24056
|
-
|
|
24057
|
-
## braces
|
|
24058
|
-
License: MIT
|
|
24059
|
-
By: Jon Schlinkert, Brian Woodward, Elan Shanker, Eugene Sharygin, hemanth.hm
|
|
24060
|
-
Repository: micromatch/braces
|
|
24061
|
-
|
|
24062
|
-
> The MIT License (MIT)
|
|
24063
|
-
>
|
|
24064
|
-
> Copyright (c) 2014-present, Jon Schlinkert.
|
|
24065
|
-
>
|
|
24066
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
24067
|
-
> of this software and associated documentation files (the "Software"), to deal
|
|
24068
|
-
> in the Software without restriction, including without limitation the rights
|
|
24069
|
-
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
24070
|
-
> copies of the Software, and to permit persons to whom the Software is
|
|
24071
|
-
> furnished to do so, subject to the following conditions:
|
|
24072
|
-
>
|
|
24073
|
-
> The above copyright notice and this permission notice shall be included in
|
|
24074
|
-
> all copies or substantial portions of the Software.
|
|
24075
|
-
>
|
|
24076
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
24077
|
-
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24078
|
-
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24079
|
-
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24080
|
-
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24081
|
-
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
24082
|
-
> THE SOFTWARE.
|
|
24083
|
-
|
|
24084
|
-
---------------------------------------
|
|
24085
|
-
|
|
24086
|
-
## builtin-modules
|
|
24087
|
-
License: MIT
|
|
24088
|
-
By: Sindre Sorhus
|
|
24089
|
-
Repository: sindresorhus/builtin-modules
|
|
24090
|
-
|
|
24091
|
-
> MIT License
|
|
24092
|
-
>
|
|
24093
|
-
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
24094
|
-
>
|
|
24095
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
24096
|
-
>
|
|
24097
|
-
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
24098
|
-
>
|
|
24099
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
24100
|
-
|
|
24101
|
-
---------------------------------------
|
|
24102
|
-
|
|
24103
|
-
## chokidar
|
|
24104
|
-
License: MIT
|
|
24105
|
-
By: Paul Miller, Elan Shanker
|
|
24106
|
-
Repository: git+https://github.com/paulmillr/chokidar.git
|
|
24107
|
-
|
|
24108
|
-
> The MIT License (MIT)
|
|
24109
|
-
>
|
|
24110
|
-
> Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker
|
|
24111
|
-
>
|
|
24112
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
24113
|
-
> of this software and associated documentation files (the “Software”), to deal
|
|
24114
|
-
> in the Software without restriction, including without limitation the rights
|
|
24115
|
-
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
24116
|
-
> copies of the Software, and to permit persons to whom the Software is
|
|
24117
|
-
> furnished to do so, subject to the following conditions:
|
|
24118
|
-
>
|
|
24119
|
-
> The above copyright notice and this permission notice shall be included in
|
|
24120
|
-
> all copies or substantial portions of the Software.
|
|
24121
|
-
>
|
|
24122
|
-
> THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
24123
|
-
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24124
|
-
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24125
|
-
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24126
|
-
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24127
|
-
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
24128
|
-
> THE SOFTWARE.
|
|
24129
|
-
|
|
24130
|
-
---------------------------------------
|
|
24131
|
-
|
|
24132
|
-
## date-time
|
|
24133
|
-
License: MIT
|
|
24134
|
-
By: Sindre Sorhus
|
|
24135
|
-
Repository: sindresorhus/date-time
|
|
24136
|
-
|
|
24137
|
-
> MIT License
|
|
24138
|
-
>
|
|
24139
|
-
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
24140
|
-
>
|
|
24141
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
24142
|
-
>
|
|
24143
|
-
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
24144
|
-
>
|
|
24145
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
24146
|
-
|
|
24147
|
-
---------------------------------------
|
|
24148
|
-
|
|
24149
|
-
## fill-range
|
|
24150
|
-
License: MIT
|
|
24151
|
-
By: Jon Schlinkert, Edo Rivai, Paul Miller, Rouven Weßling
|
|
24152
|
-
Repository: jonschlinkert/fill-range
|
|
24153
|
-
|
|
24154
|
-
> The MIT License (MIT)
|
|
24155
|
-
>
|
|
24156
|
-
> Copyright (c) 2014-present, Jon Schlinkert.
|
|
24157
|
-
>
|
|
24158
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
24159
|
-
> of this software and associated documentation files (the "Software"), to deal
|
|
24160
|
-
> in the Software without restriction, including without limitation the rights
|
|
24161
|
-
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
24162
|
-
> copies of the Software, and to permit persons to whom the Software is
|
|
24163
|
-
> furnished to do so, subject to the following conditions:
|
|
24164
|
-
>
|
|
24165
|
-
> The above copyright notice and this permission notice shall be included in
|
|
24166
|
-
> all copies or substantial portions of the Software.
|
|
24167
|
-
>
|
|
24168
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
24169
|
-
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24170
|
-
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24171
|
-
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24172
|
-
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24173
|
-
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
24174
|
-
> THE SOFTWARE.
|
|
24175
|
-
|
|
24176
|
-
---------------------------------------
|
|
24177
|
-
|
|
24178
|
-
## flru
|
|
24179
|
-
License: MIT
|
|
24180
|
-
By: Luke Edwards
|
|
24181
|
-
Repository: lukeed/flru
|
|
24182
|
-
|
|
24183
|
-
> MIT License
|
|
24184
|
-
>
|
|
24185
|
-
> Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
|
|
24186
|
-
>
|
|
24187
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
24188
|
-
>
|
|
24189
|
-
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
24190
|
-
>
|
|
24191
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
24192
|
-
|
|
24193
|
-
---------------------------------------
|
|
24194
|
-
|
|
24195
|
-
## glob-parent
|
|
24196
|
-
License: ISC
|
|
24197
|
-
By: Gulp Team, Elan Shanker, Blaine Bublitz
|
|
24198
|
-
Repository: gulpjs/glob-parent
|
|
24199
|
-
|
|
24200
|
-
> The ISC License
|
|
24201
|
-
>
|
|
24202
|
-
> Copyright (c) 2015, 2019 Elan Shanker
|
|
24203
|
-
>
|
|
24204
|
-
> Permission to use, copy, modify, and/or distribute this software for any
|
|
24205
|
-
> purpose with or without fee is hereby granted, provided that the above
|
|
24206
|
-
> copyright notice and this permission notice appear in all copies.
|
|
24207
|
-
>
|
|
24208
|
-
> THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
24209
|
-
> WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
24210
|
-
> MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
24211
|
-
> ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
24212
|
-
> WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
24213
|
-
> ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
24214
|
-
> IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
24215
|
-
|
|
24216
|
-
---------------------------------------
|
|
24217
|
-
|
|
24218
|
-
## is-binary-path
|
|
24219
|
-
License: MIT
|
|
24220
|
-
By: Sindre Sorhus
|
|
24221
|
-
Repository: sindresorhus/is-binary-path
|
|
24222
|
-
|
|
24223
|
-
> MIT License
|
|
24224
|
-
>
|
|
24225
|
-
> Copyright (c) 2019 Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com), Paul Miller (https://paulmillr.com)
|
|
24226
|
-
>
|
|
24227
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
24228
|
-
>
|
|
24229
|
-
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
24230
|
-
>
|
|
24231
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
24232
|
-
|
|
24233
|
-
---------------------------------------
|
|
24234
|
-
|
|
24235
|
-
## is-extglob
|
|
24236
|
-
License: MIT
|
|
24237
|
-
By: Jon Schlinkert
|
|
24238
|
-
Repository: jonschlinkert/is-extglob
|
|
24239
|
-
|
|
24240
|
-
> The MIT License (MIT)
|
|
24241
|
-
>
|
|
24242
|
-
> Copyright (c) 2014-2016, Jon Schlinkert
|
|
24243
|
-
>
|
|
24244
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
24245
|
-
> of this software and associated documentation files (the "Software"), to deal
|
|
24246
|
-
> in the Software without restriction, including without limitation the rights
|
|
24247
|
-
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
24248
|
-
> copies of the Software, and to permit persons to whom the Software is
|
|
24249
|
-
> furnished to do so, subject to the following conditions:
|
|
24250
|
-
>
|
|
24251
|
-
> The above copyright notice and this permission notice shall be included in
|
|
24252
|
-
> all copies or substantial portions of the Software.
|
|
24253
|
-
>
|
|
24254
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
24255
|
-
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24256
|
-
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24257
|
-
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24258
|
-
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24259
|
-
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
24260
|
-
> THE SOFTWARE.
|
|
24261
|
-
|
|
24262
|
-
---------------------------------------
|
|
24263
|
-
|
|
24264
|
-
## is-glob
|
|
24265
|
-
License: MIT
|
|
24266
|
-
By: Jon Schlinkert, Brian Woodward, Daniel Perez
|
|
24267
|
-
Repository: micromatch/is-glob
|
|
24268
|
-
|
|
24269
|
-
> The MIT License (MIT)
|
|
24270
|
-
>
|
|
24271
|
-
> Copyright (c) 2014-2017, Jon Schlinkert.
|
|
24272
|
-
>
|
|
24273
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
24274
|
-
> of this software and associated documentation files (the "Software"), to deal
|
|
24275
|
-
> in the Software without restriction, including without limitation the rights
|
|
24276
|
-
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
24277
|
-
> copies of the Software, and to permit persons to whom the Software is
|
|
24278
|
-
> furnished to do so, subject to the following conditions:
|
|
24279
|
-
>
|
|
24280
|
-
> The above copyright notice and this permission notice shall be included in
|
|
24281
|
-
> all copies or substantial portions of the Software.
|
|
24282
|
-
>
|
|
24283
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
24284
|
-
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24285
|
-
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24286
|
-
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24287
|
-
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24288
|
-
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
24289
|
-
> THE SOFTWARE.
|
|
24290
|
-
|
|
24291
|
-
---------------------------------------
|
|
24292
|
-
|
|
24293
|
-
## is-number
|
|
24294
|
-
License: MIT
|
|
24295
|
-
By: Jon Schlinkert, Olsten Larck, Rouven Weßling
|
|
24296
|
-
Repository: jonschlinkert/is-number
|
|
24297
|
-
|
|
24298
|
-
> The MIT License (MIT)
|
|
24299
|
-
>
|
|
24300
|
-
> Copyright (c) 2014-present, Jon Schlinkert.
|
|
24301
|
-
>
|
|
24302
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
24303
|
-
> of this software and associated documentation files (the "Software"), to deal
|
|
24304
|
-
> in the Software without restriction, including without limitation the rights
|
|
24305
|
-
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
24306
|
-
> copies of the Software, and to permit persons to whom the Software is
|
|
24307
|
-
> furnished to do so, subject to the following conditions:
|
|
24308
|
-
>
|
|
24309
|
-
> The above copyright notice and this permission notice shall be included in
|
|
24310
|
-
> all copies or substantial portions of the Software.
|
|
24311
|
-
>
|
|
24312
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
24313
|
-
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24314
|
-
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24315
|
-
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24316
|
-
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24317
|
-
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
24318
|
-
> THE SOFTWARE.
|
|
24319
|
-
|
|
24320
|
-
---------------------------------------
|
|
24321
|
-
|
|
24322
|
-
## is-reference
|
|
24323
|
-
License: MIT
|
|
24324
|
-
By: Rich Harris
|
|
24325
|
-
Repository: git+https://github.com/Rich-Harris/is-reference.git
|
|
24326
|
-
|
|
24327
|
-
---------------------------------------
|
|
24328
|
-
|
|
24329
|
-
## locate-character
|
|
24330
|
-
License: MIT
|
|
24331
|
-
By: Rich Harris
|
|
24332
|
-
Repository: git+https://gitlab.com/Rich-Harris/locate-character.git
|
|
24333
|
-
|
|
24334
|
-
---------------------------------------
|
|
24335
|
-
|
|
24336
|
-
## magic-string
|
|
24337
|
-
License: MIT
|
|
24338
|
-
By: Rich Harris
|
|
24339
|
-
Repository: https://github.com/rich-harris/magic-string.git
|
|
24340
|
-
|
|
24341
|
-
> Copyright 2018 Rich Harris
|
|
24342
|
-
>
|
|
24343
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
24344
|
-
>
|
|
24345
|
-
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
24346
|
-
>
|
|
24347
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
24348
|
-
|
|
24349
|
-
---------------------------------------
|
|
24350
|
-
|
|
24351
|
-
## normalize-path
|
|
24352
|
-
License: MIT
|
|
24353
|
-
By: Jon Schlinkert, Blaine Bublitz
|
|
24354
|
-
Repository: jonschlinkert/normalize-path
|
|
24355
|
-
|
|
24356
|
-
> The MIT License (MIT)
|
|
24357
|
-
>
|
|
24358
|
-
> Copyright (c) 2014-2018, Jon Schlinkert.
|
|
24359
|
-
>
|
|
24360
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
24361
|
-
> of this software and associated documentation files (the "Software"), to deal
|
|
24362
|
-
> in the Software without restriction, including without limitation the rights
|
|
24363
|
-
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
24364
|
-
> copies of the Software, and to permit persons to whom the Software is
|
|
24365
|
-
> furnished to do so, subject to the following conditions:
|
|
24366
|
-
>
|
|
24367
|
-
> The above copyright notice and this permission notice shall be included in
|
|
24368
|
-
> all copies or substantial portions of the Software.
|
|
24369
|
-
>
|
|
24370
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
24371
|
-
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24372
|
-
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24373
|
-
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24374
|
-
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24375
|
-
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
24376
|
-
> THE SOFTWARE.
|
|
24377
|
-
|
|
24378
|
-
---------------------------------------
|
|
24379
|
-
|
|
24380
|
-
## parse-ms
|
|
24381
|
-
License: MIT
|
|
24382
|
-
By: Sindre Sorhus
|
|
24383
|
-
Repository: sindresorhus/parse-ms
|
|
24384
|
-
|
|
24385
|
-
> MIT License
|
|
24386
|
-
>
|
|
24387
|
-
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
24388
|
-
>
|
|
24389
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
24390
|
-
>
|
|
24391
|
-
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
24392
|
-
>
|
|
24393
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
24394
|
-
|
|
24395
|
-
---------------------------------------
|
|
24396
|
-
|
|
24397
|
-
## picocolors
|
|
24398
|
-
License: ISC
|
|
24399
|
-
By: Alexey Raspopov
|
|
24400
|
-
Repository: alexeyraspopov/picocolors
|
|
24401
|
-
|
|
24402
|
-
> ISC License
|
|
24403
|
-
>
|
|
24404
|
-
> Copyright (c) 2021-2024 Oleksii Raspopov, Kostiantyn Denysov, Anton Verinov
|
|
24405
|
-
>
|
|
24406
|
-
> Permission to use, copy, modify, and/or distribute this software for any
|
|
24407
|
-
> purpose with or without fee is hereby granted, provided that the above
|
|
24408
|
-
> copyright notice and this permission notice appear in all copies.
|
|
24409
|
-
>
|
|
24410
|
-
> THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
24411
|
-
> WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
24412
|
-
> MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
24413
|
-
> ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
24414
|
-
> WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
24415
|
-
> ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
24416
|
-
> OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
24417
|
-
|
|
24418
|
-
---------------------------------------
|
|
24419
|
-
|
|
24420
|
-
## picomatch
|
|
24421
|
-
License: MIT
|
|
24422
|
-
By: Jon Schlinkert
|
|
24423
|
-
Repository: micromatch/picomatch
|
|
24424
|
-
|
|
24425
|
-
> The MIT License (MIT)
|
|
24426
|
-
>
|
|
24427
|
-
> Copyright (c) 2017-present, Jon Schlinkert.
|
|
24428
|
-
>
|
|
24429
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
24430
|
-
> of this software and associated documentation files (the "Software"), to deal
|
|
24431
|
-
> in the Software without restriction, including without limitation the rights
|
|
24432
|
-
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
24433
|
-
> copies of the Software, and to permit persons to whom the Software is
|
|
24434
|
-
> furnished to do so, subject to the following conditions:
|
|
24435
|
-
>
|
|
24436
|
-
> The above copyright notice and this permission notice shall be included in
|
|
24437
|
-
> all copies or substantial portions of the Software.
|
|
24438
|
-
>
|
|
24439
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
24440
|
-
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24441
|
-
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24442
|
-
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24443
|
-
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24444
|
-
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
24445
|
-
> THE SOFTWARE.
|
|
24446
|
-
|
|
24447
|
-
---------------------------------------
|
|
24448
|
-
|
|
24449
|
-
## pretty-bytes
|
|
24450
|
-
License: MIT
|
|
24451
|
-
By: Sindre Sorhus
|
|
24452
|
-
Repository: sindresorhus/pretty-bytes
|
|
24453
|
-
|
|
24454
|
-
> MIT License
|
|
24455
|
-
>
|
|
24456
|
-
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
24457
|
-
>
|
|
24458
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
24459
|
-
>
|
|
24460
|
-
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
24461
|
-
>
|
|
24462
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
24463
|
-
|
|
24464
|
-
---------------------------------------
|
|
24465
|
-
|
|
24466
|
-
## pretty-ms
|
|
24467
|
-
License: MIT
|
|
24468
|
-
By: Sindre Sorhus
|
|
24469
|
-
Repository: sindresorhus/pretty-ms
|
|
24470
|
-
|
|
24471
|
-
> MIT License
|
|
24472
|
-
>
|
|
24473
|
-
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
24474
|
-
>
|
|
24475
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
24476
|
-
>
|
|
24477
|
-
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
24478
|
-
>
|
|
24479
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
24480
|
-
|
|
24481
|
-
---------------------------------------
|
|
24482
|
-
|
|
24483
|
-
## readdirp
|
|
24484
|
-
License: MIT
|
|
24485
|
-
By: Thorsten Lorenz, Paul Miller
|
|
24486
|
-
Repository: git://github.com/paulmillr/readdirp.git
|
|
24487
|
-
|
|
24488
|
-
> MIT License
|
|
24489
|
-
>
|
|
24490
|
-
> Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com)
|
|
24491
|
-
>
|
|
24492
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
24493
|
-
> of this software and associated documentation files (the "Software"), to deal
|
|
24494
|
-
> in the Software without restriction, including without limitation the rights
|
|
24495
|
-
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
24496
|
-
> copies of the Software, and to permit persons to whom the Software is
|
|
24497
|
-
> furnished to do so, subject to the following conditions:
|
|
24498
|
-
>
|
|
24499
|
-
> The above copyright notice and this permission notice shall be included in all
|
|
24500
|
-
> copies or substantial portions of the Software.
|
|
24501
|
-
>
|
|
24502
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
24503
|
-
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24504
|
-
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24505
|
-
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24506
|
-
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24507
|
-
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
24508
|
-
> SOFTWARE.
|
|
24509
|
-
|
|
24510
|
-
---------------------------------------
|
|
24511
|
-
|
|
24512
|
-
## signal-exit
|
|
24513
|
-
License: ISC
|
|
24514
|
-
By: Ben Coe
|
|
24515
|
-
Repository: https://github.com/tapjs/signal-exit.git
|
|
24516
|
-
|
|
24517
|
-
> The ISC License
|
|
24518
|
-
>
|
|
24519
|
-
> Copyright (c) 2015-2023 Benjamin Coe, Isaac Z. Schlueter, and Contributors
|
|
24520
|
-
>
|
|
24521
|
-
> Permission to use, copy, modify, and/or distribute this software
|
|
24522
|
-
> for any purpose with or without fee is hereby granted, provided
|
|
24523
|
-
> that the above copyright notice and this permission notice
|
|
24524
|
-
> appear in all copies.
|
|
24525
|
-
>
|
|
24526
|
-
> THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
24527
|
-
> WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
|
|
24528
|
-
> OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE
|
|
24529
|
-
> LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
|
|
24530
|
-
> OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
24531
|
-
> WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
|
24532
|
-
> ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
24533
|
-
|
|
24534
|
-
---------------------------------------
|
|
24535
|
-
|
|
24536
|
-
## time-zone
|
|
24537
|
-
License: MIT
|
|
24538
|
-
By: Sindre Sorhus
|
|
24539
|
-
Repository: sindresorhus/time-zone
|
|
24540
|
-
|
|
24541
|
-
> MIT License
|
|
24542
|
-
>
|
|
24543
|
-
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
24544
|
-
>
|
|
24545
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
24546
|
-
>
|
|
24547
|
-
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
24548
|
-
>
|
|
24549
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
24550
|
-
|
|
24551
|
-
---------------------------------------
|
|
24552
|
-
|
|
24553
|
-
## to-regex-range
|
|
24554
|
-
License: MIT
|
|
24555
|
-
By: Jon Schlinkert, Rouven Weßling
|
|
24556
|
-
Repository: micromatch/to-regex-range
|
|
24557
|
-
|
|
24558
|
-
> The MIT License (MIT)
|
|
24559
|
-
>
|
|
24560
|
-
> Copyright (c) 2015-present, Jon Schlinkert.
|
|
24561
|
-
>
|
|
24562
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
24563
|
-
> of this software and associated documentation files (the "Software"), to deal
|
|
24564
|
-
> in the Software without restriction, including without limitation the rights
|
|
24565
|
-
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
24566
|
-
> copies of the Software, and to permit persons to whom the Software is
|
|
24567
|
-
> furnished to do so, subject to the following conditions:
|
|
24568
|
-
>
|
|
24569
|
-
> The above copyright notice and this permission notice shall be included in
|
|
24570
|
-
> all copies or substantial portions of the Software.
|
|
24571
|
-
>
|
|
24572
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
24573
|
-
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24574
|
-
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24575
|
-
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24576
|
-
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24577
|
-
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
24578
|
-
> THE SOFTWARE.
|
|
24579
|
-
|
|
24580
|
-
---------------------------------------
|
|
24581
|
-
|
|
24582
|
-
## tslib
|
|
24583
|
-
License: 0BSD
|
|
24584
|
-
By: Microsoft Corp.
|
|
24585
|
-
Repository: https://github.com/Microsoft/tslib.git
|
|
24586
|
-
|
|
24587
|
-
> Copyright (c) Microsoft Corporation.
|
|
24588
|
-
>
|
|
24589
|
-
> Permission to use, copy, modify, and/or distribute this software for any
|
|
24590
|
-
> purpose with or without fee is hereby granted.
|
|
24591
|
-
>
|
|
24592
|
-
> THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
24593
|
-
> REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
24594
|
-
> AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
24595
|
-
> INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
24596
|
-
> LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
24597
|
-
> OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
24598
|
-
> PERFORMANCE OF THIS SOFTWARE.
|
|
24599
|
-
|
|
24600
|
-
---------------------------------------
|
|
24601
|
-
|
|
24602
|
-
## yargs-parser
|
|
24603
|
-
License: ISC
|
|
24604
|
-
By: Ben Coe
|
|
24605
|
-
Repository: https://github.com/yargs/yargs-parser.git
|
|
24606
|
-
|
|
24607
|
-
> Copyright (c) 2016, Contributors
|
|
24608
|
-
>
|
|
24609
|
-
> Permission to use, copy, modify, and/or distribute this software
|
|
24610
|
-
> for any purpose with or without fee is hereby granted, provided
|
|
24611
|
-
> that the above copyright notice and this permission notice
|
|
24612
|
-
> appear in all copies.
|
|
24613
|
-
>
|
|
24614
|
-
> THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
24615
|
-
> WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
|
|
24616
|
-
> OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE
|
|
24617
|
-
> LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
|
|
24618
|
-
> OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
24619
|
-
> WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
|
24620
|
-
> ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
24621
|
-
|
|
24622
|
-
---
|
|
24623
|
-
|
|
24624
23891
|
The following software may be included in this product: router (2.2.0)
|
|
24625
23892
|
This software contains the following license and notice below:
|
|
24626
23893
|
|
|
@@ -26257,7 +25524,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
26257
25524
|
|
|
26258
25525
|
---
|
|
26259
25526
|
|
|
26260
|
-
The following software may be included in this product: svgo (3.3.
|
|
25527
|
+
The following software may be included in this product: svgo (3.3.4)
|
|
26261
25528
|
This software contains the following license and notice below:
|
|
26262
25529
|
|
|
26263
25530
|
MIT License
|
|
@@ -40666,27 +39933,6 @@ USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
40666
39933
|
|
|
40667
39934
|
---
|
|
40668
39935
|
|
|
40669
|
-
The following software may be included in this product: @trysound/sax (0.2.0)
|
|
40670
|
-
This software contains the following license and notice below:
|
|
40671
|
-
|
|
40672
|
-
The ISC License
|
|
40673
|
-
|
|
40674
|
-
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
40675
|
-
|
|
40676
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
40677
|
-
purpose with or without fee is hereby granted, provided that the above
|
|
40678
|
-
copyright notice and this permission notice appear in all copies.
|
|
40679
|
-
|
|
40680
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
40681
|
-
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
40682
|
-
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
40683
|
-
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
40684
|
-
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
40685
|
-
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
40686
|
-
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
40687
|
-
|
|
40688
|
-
---
|
|
40689
|
-
|
|
40690
39936
|
The following software may be included in this product: abbrev (2.0.0)
|
|
40691
39937
|
This software contains the following license and notice below:
|
|
40692
39938
|
|
|
@@ -44752,6 +43998,67 @@ software or this license, under any kind of legal claim.***
|
|
|
44752
43998
|
|
|
44753
43999
|
---
|
|
44754
44000
|
|
|
44001
|
+
The following software may be included in this product: sax (1.6.0)
|
|
44002
|
+
This software contains the following license and notice below:
|
|
44003
|
+
|
|
44004
|
+
# Blue Oak Model License
|
|
44005
|
+
|
|
44006
|
+
Version 1.0.0
|
|
44007
|
+
|
|
44008
|
+
## Purpose
|
|
44009
|
+
|
|
44010
|
+
This license gives everyone as much permission to work with
|
|
44011
|
+
this software as possible, while protecting contributors
|
|
44012
|
+
from liability.
|
|
44013
|
+
|
|
44014
|
+
## Acceptance
|
|
44015
|
+
|
|
44016
|
+
In order to receive this license, you must agree to its
|
|
44017
|
+
rules. The rules of this license are both obligations
|
|
44018
|
+
under that agreement and conditions to your license.
|
|
44019
|
+
You must not do anything with this software that triggers
|
|
44020
|
+
a rule that you cannot or will not follow.
|
|
44021
|
+
|
|
44022
|
+
## Copyright
|
|
44023
|
+
|
|
44024
|
+
Each contributor licenses you to do everything with this
|
|
44025
|
+
software that would otherwise infringe that contributor's
|
|
44026
|
+
copyright in it.
|
|
44027
|
+
|
|
44028
|
+
## Notices
|
|
44029
|
+
|
|
44030
|
+
You must ensure that everyone who gets a copy of
|
|
44031
|
+
any part of this software from you, with or without
|
|
44032
|
+
changes, also gets the text of this license or a link to
|
|
44033
|
+
<https://blueoakcouncil.org/license/1.0.0>.
|
|
44034
|
+
|
|
44035
|
+
## Excuse
|
|
44036
|
+
|
|
44037
|
+
If anyone notifies you in writing that you have not
|
|
44038
|
+
complied with [Notices](#notices), you can keep your
|
|
44039
|
+
license by taking all practical steps to comply within 30
|
|
44040
|
+
days after the notice. If you do not do so, your license
|
|
44041
|
+
ends immediately.
|
|
44042
|
+
|
|
44043
|
+
## Patent
|
|
44044
|
+
|
|
44045
|
+
Each contributor licenses you to do everything with this
|
|
44046
|
+
software that would otherwise infringe any patent claims
|
|
44047
|
+
they can license or become able to license.
|
|
44048
|
+
|
|
44049
|
+
## Reliability
|
|
44050
|
+
|
|
44051
|
+
No contributor can revoke this license.
|
|
44052
|
+
|
|
44053
|
+
## No Liability
|
|
44054
|
+
|
|
44055
|
+
***As far as the law allows, this software comes as is,
|
|
44056
|
+
without any warranty or condition, and no contributor
|
|
44057
|
+
will be liable to anyone for any damages related to this
|
|
44058
|
+
software or this license, under any kind of legal claim.***
|
|
44059
|
+
|
|
44060
|
+
---
|
|
44061
|
+
|
|
44755
44062
|
The following software may be included in this product: json-schema (0.4.0)
|
|
44756
44063
|
This software contains the following license and notice below:
|
|
44757
44064
|
|