@aws/nx-plugin 1.0.0-rc.3 → 1.0.0-rc.5
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 +1437 -41
- package/executors.json +9 -0
- package/generators.json +34 -0
- package/package.json +5 -1
- package/sdk/license.d.ts +8 -0
- package/sdk/license.js +13 -0
- package/sdk/license.js.map +1 -0
- package/src/connection/generator.d.ts +1 -1
- package/src/connection/generator.js +19 -0
- package/src/connection/generator.js.map +1 -1
- package/src/license/__snapshots__/config.spec.ts.snap +23 -0
- package/src/license/config-types.d.ts +17 -0
- package/src/license/config.d.ts +63 -5
- package/src/license/config.js +315 -7
- package/src/license/config.js.map +1 -1
- package/src/license/dependency-check/check.d.ts +12 -0
- package/src/license/dependency-check/check.js +111 -0
- package/src/license/dependency-check/check.js.map +1 -0
- package/src/license/dependency-check/collectors/collector.d.ts +21 -0
- package/src/license/dependency-check/collectors/collector.js +76 -0
- package/src/license/dependency-check/collectors/collector.js.map +1 -0
- package/src/license/dependency-check/collectors/npm-collector.d.ts +10 -0
- package/src/license/dependency-check/collectors/npm-collector.js +75 -0
- package/src/license/dependency-check/collectors/npm-collector.js.map +1 -0
- package/src/license/dependency-check/collectors/python-collector.d.ts +19 -0
- package/src/license/dependency-check/collectors/python-collector.js +121 -0
- package/src/license/dependency-check/collectors/python-collector.js.map +1 -0
- package/src/license/dependency-check/evaluator.d.ts +9 -0
- package/src/license/dependency-check/evaluator.js +122 -0
- package/src/license/dependency-check/evaluator.js.map +1 -0
- package/src/license/dependency-check/executor-schema.json +6 -0
- package/src/license/dependency-check/executor.d.ts +9 -0
- package/src/license/dependency-check/executor.js +43 -0
- package/src/license/dependency-check/executor.js.map +1 -0
- package/src/license/dependency-check/pre-approved.d.ts +6 -0
- package/src/license/dependency-check/pre-approved.js +1280 -0
- package/src/license/dependency-check/pre-approved.js.map +1 -0
- package/src/license/dependency-check/types.d.ts +45 -0
- package/src/license/dependency-check/types.js +7 -0
- package/src/license/dependency-check/types.js.map +1 -0
- package/src/license/generator.js +110 -11
- package/src/license/generator.js.map +1 -1
- package/src/license/index.d.ts +8 -0
- package/src/license/index.js +13 -0
- package/src/license/index.js.map +1 -0
- package/src/license/known-exceptions.d.ts +7 -0
- package/src/license/known-exceptions.js +33 -0
- package/src/license/known-exceptions.js.map +1 -0
- package/src/license/schema.d.ts +5 -0
- package/src/license/schema.json +6 -0
- package/src/license/sync/generator.js +10 -10
- package/src/license/sync/generator.js.map +1 -1
- package/src/license/sync/project-file-sync.d.ts +2 -2
- package/src/license/sync/project-file-sync.js.map +1 -1
- package/src/preset/__snapshots__/generator.spec.ts.snap +70 -0
- package/src/preset/generator.d.ts +1 -1
- package/src/preset/generator.js +5 -1
- package/src/preset/generator.js.map +1 -1
- package/src/preset/schema.d.ts +1 -0
- package/src/preset/schema.json +5 -0
- package/src/py/agent/generator.js +5 -0
- package/src/py/agent/generator.js.map +1 -1
- package/src/py/mcp-server/generator.js +3 -0
- package/src/py/mcp-server/generator.js.map +1 -1
- package/src/py/project/generator.js +7 -0
- package/src/py/project/generator.js.map +1 -1
- package/src/ts/dynamodb/__snapshots__/generator.spec.ts.snap +1502 -0
- package/src/ts/dynamodb/agent-connection/__snapshots__/generator.spec.ts.snap +45 -0
- package/src/ts/dynamodb/agent-connection/generator.d.ts +10 -0
- package/src/ts/dynamodb/agent-connection/generator.js +32 -0
- package/src/ts/dynamodb/agent-connection/generator.js.map +1 -0
- package/src/ts/dynamodb/agent-connection/schema.d.ts +14 -0
- package/src/ts/dynamodb/agent-connection/schema.json +22 -0
- package/src/ts/dynamodb/files/scripts/create-local-table.ts.template +161 -0
- package/src/ts/{rdb/files/scripts/docker-pull.ts.template → dynamodb/files/scripts/pull-image.ts.template} +1 -1
- package/src/ts/dynamodb/files/scripts/start-container.ts.template +81 -0
- package/src/ts/dynamodb/files/src/client.ts.template +45 -0
- package/src/ts/dynamodb/files/src/constants.ts.template +9 -0
- package/src/ts/dynamodb/files/src/entities/example.ts.template +47 -0
- package/src/ts/dynamodb/files/src/entities/index.ts.template +1 -0
- package/src/ts/dynamodb/files/src/gsi.ts.template +14 -0
- package/src/ts/dynamodb/files/src/index.ts.template +11 -0
- package/src/ts/dynamodb/generator.d.ts +10 -0
- package/src/ts/dynamodb/generator.js +108 -0
- package/src/ts/dynamodb/generator.js.map +1 -0
- package/src/ts/dynamodb/mcp-server-connection/__snapshots__/generator.spec.ts.snap +45 -0
- package/src/ts/dynamodb/mcp-server-connection/generator.d.ts +10 -0
- package/src/ts/dynamodb/mcp-server-connection/generator.js +32 -0
- package/src/ts/dynamodb/mcp-server-connection/generator.js.map +1 -0
- package/src/ts/dynamodb/mcp-server-connection/schema.d.ts +14 -0
- package/src/ts/dynamodb/mcp-server-connection/schema.json +22 -0
- package/src/ts/dynamodb/schema.d.ts +14 -0
- package/src/ts/dynamodb/schema.json +52 -0
- package/src/ts/dynamodb/smithy-connection/__snapshots__/generator.spec.ts.snap +23 -0
- package/src/ts/dynamodb/smithy-connection/generator.d.ts +10 -0
- package/src/ts/dynamodb/smithy-connection/generator.js +30 -0
- package/src/ts/dynamodb/smithy-connection/generator.js.map +1 -0
- package/src/ts/dynamodb/smithy-connection/schema.d.ts +12 -0
- package/src/ts/dynamodb/smithy-connection/schema.json +18 -0
- package/src/ts/dynamodb/trpc-connection/__snapshots__/generator.spec.ts.snap +23 -0
- package/src/ts/dynamodb/trpc-connection/generator.d.ts +10 -0
- package/src/ts/dynamodb/trpc-connection/generator.js +30 -0
- package/src/ts/dynamodb/trpc-connection/generator.js.map +1 -0
- package/src/ts/dynamodb/trpc-connection/schema.d.ts +12 -0
- package/src/ts/dynamodb/trpc-connection/schema.json +18 -0
- package/src/ts/lib/ts-project-utils.js +6 -0
- package/src/ts/lib/ts-project-utils.js.map +1 -1
- package/src/ts/mcp-server/generator.js +3 -0
- package/src/ts/mcp-server/generator.js.map +1 -1
- package/src/ts/rdb/__snapshots__/generator.spec.ts.snap +22 -38
- package/src/ts/rdb/files/scripts/pull-image.ts.template +15 -0
- package/src/ts/rdb/files/scripts/{docker-start.ts.template → start-container.ts.template} +23 -23
- package/src/ts/rdb/generator.js +8 -8
- package/src/ts/rdb/generator.js.map +1 -1
- package/src/utils/ast.d.ts +28 -0
- package/src/utils/ast.js +59 -1
- package/src/utils/ast.js.map +1 -1
- package/src/utils/config/utils.d.ts +11 -1
- package/src/utils/config/utils.js +37 -5
- package/src/utils/config/utils.js.map +1 -1
- package/src/utils/dynamodb-constructs/dynamodb-constructs.d.ts +18 -0
- package/src/utils/dynamodb-constructs/dynamodb-constructs.js +57 -0
- package/src/utils/dynamodb-constructs/dynamodb-constructs.js.map +1 -0
- package/src/utils/dynamodb-constructs/files/cdk/app/dynamodb/__nameKebabCase__.ts.template +30 -0
- package/src/utils/dynamodb-constructs/files/cdk/core/dynamodb.ts.template +105 -0
- package/src/utils/dynamodb-constructs/files/terraform/app/dynamodb/__nameKebabCase__/__nameKebabCase__.tf.template +65 -0
- package/src/utils/dynamodb-constructs/files/terraform/core/dynamodb/dynamodb.tf.template +155 -0
- package/src/utils/mcp.d.ts +25 -0
- package/src/utils/mcp.js +81 -0
- package/src/utils/mcp.js.map +1 -0
- package/src/utils/port.d.ts +6 -0
- package/src/utils/port.js +23 -2
- package/src/utils/port.js.map +1 -1
- package/src/utils/rdb-constructs/files/terraform/app/dbs/__nameKebabCase__/__nameKebabCase__.tf.template +4 -4
- package/src/utils/rdb-constructs/rdb-constructs.d.ts +1 -1
- package/src/utils/versions.d.ts +2 -1
- package/src/utils/versions.js +1 -0
- package/src/utils/versions.js.map +1 -1
package/LICENSE-THIRD-PARTY
CHANGED
|
@@ -3417,12 +3417,12 @@ SOFTWARE.
|
|
|
3417
3417
|
|
|
3418
3418
|
---
|
|
3419
3419
|
|
|
3420
|
-
The following software may be included in this product: @esbuild/
|
|
3420
|
+
The following software may be included in this product: @esbuild/darwin-arm64 (0.28.0)
|
|
3421
3421
|
This software contains the following license and notice below:
|
|
3422
3422
|
|
|
3423
3423
|
MIT License
|
|
3424
3424
|
|
|
3425
|
-
Copyright (c) The maintainers of @esbuild/
|
|
3425
|
+
Copyright (c) The maintainers of @esbuild/darwin-arm64 <https://github.com/evanw/esbuild#readme>
|
|
3426
3426
|
|
|
3427
3427
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
3428
3428
|
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
@@ -3596,12 +3596,36 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
3596
3596
|
|
|
3597
3597
|
---
|
|
3598
3598
|
|
|
3599
|
-
The following software may be included in this product: @getgrit/gritql-
|
|
3599
|
+
The following software may be included in this product: @getgrit/gritql-darwin-arm64 (0.0.3)
|
|
3600
3600
|
This software contains the following license and notice below:
|
|
3601
3601
|
|
|
3602
3602
|
MIT License
|
|
3603
3603
|
|
|
3604
|
-
Copyright (c) The maintainers of @getgrit/gritql-
|
|
3604
|
+
Copyright (c) The maintainers of @getgrit/gritql-darwin-arm64 <https://github.com/biomejs/gritql#readme>
|
|
3605
|
+
|
|
3606
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
3607
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
3608
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3609
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
3610
|
+
following conditions:
|
|
3611
|
+
|
|
3612
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
3613
|
+
portions of the Software.
|
|
3614
|
+
|
|
3615
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
3616
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
3617
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
3618
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
3619
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3620
|
+
|
|
3621
|
+
---
|
|
3622
|
+
|
|
3623
|
+
The following software may be included in this product: @getgrit/gritql-darwin-universal (0.0.3)
|
|
3624
|
+
This software contains the following license and notice below:
|
|
3625
|
+
|
|
3626
|
+
MIT License
|
|
3627
|
+
|
|
3628
|
+
Copyright (c) The maintainers of @getgrit/gritql-darwin-universal <https://github.com/biomejs/gritql#readme>
|
|
3605
3629
|
|
|
3606
3630
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
3607
3631
|
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
@@ -5400,12 +5424,12 @@ SOFTWARE.
|
|
|
5400
5424
|
|
|
5401
5425
|
---
|
|
5402
5426
|
|
|
5403
|
-
The following software may be included in this product: @oxc-resolver/binding-
|
|
5427
|
+
The following software may be included in this product: @oxc-resolver/binding-darwin-arm64 (11.19.1)
|
|
5404
5428
|
This software contains the following license and notice below:
|
|
5405
5429
|
|
|
5406
5430
|
MIT License
|
|
5407
5431
|
|
|
5408
|
-
Copyright (c) The maintainers of @oxc-resolver/binding-
|
|
5432
|
+
Copyright (c) The maintainers of @oxc-resolver/binding-darwin-arm64 <https://oxc.rs>
|
|
5409
5433
|
|
|
5410
5434
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
5411
5435
|
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
@@ -5709,12 +5733,12 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
5709
5733
|
|
|
5710
5734
|
---
|
|
5711
5735
|
|
|
5712
|
-
The following software may be included in this product: @rolldown/binding-
|
|
5736
|
+
The following software may be included in this product: @rolldown/binding-darwin-arm64 (1.0.0-rc.15)
|
|
5713
5737
|
This software contains the following license and notice below:
|
|
5714
5738
|
|
|
5715
5739
|
MIT License
|
|
5716
5740
|
|
|
5717
|
-
Copyright (c) The maintainers of @rolldown/binding-
|
|
5741
|
+
Copyright (c) The maintainers of @rolldown/binding-darwin-arm64 <https://rolldown.rs/>
|
|
5718
5742
|
|
|
5719
5743
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
5720
5744
|
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
@@ -5733,12 +5757,12 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
5733
5757
|
|
|
5734
5758
|
---
|
|
5735
5759
|
|
|
5736
|
-
The following software may be included in this product: @rolldown/binding-
|
|
5760
|
+
The following software may be included in this product: @rolldown/binding-darwin-arm64 (1.0.2)
|
|
5737
5761
|
This software contains the following license and notice below:
|
|
5738
5762
|
|
|
5739
5763
|
MIT License
|
|
5740
5764
|
|
|
5741
|
-
Copyright (c) The maintainers of @rolldown/binding-
|
|
5765
|
+
Copyright (c) The maintainers of @rolldown/binding-darwin-arm64 <https://rolldown.rs/>
|
|
5742
5766
|
|
|
5743
5767
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
5744
5768
|
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
@@ -6025,7 +6049,7 @@ THE SOFTWARE.
|
|
|
6025
6049
|
|
|
6026
6050
|
---
|
|
6027
6051
|
|
|
6028
|
-
The following software may be included in this product: @rollup/rollup-
|
|
6052
|
+
The following software may be included in this product: @rollup/rollup-darwin-arm64 (4.50.1)
|
|
6029
6053
|
This software contains the following license and notice below:
|
|
6030
6054
|
|
|
6031
6055
|
MIT License
|
|
@@ -6077,7 +6101,7 @@ SOFTWARE.
|
|
|
6077
6101
|
|
|
6078
6102
|
---
|
|
6079
6103
|
|
|
6080
|
-
The following software may be included in this product: @rspack/binding-
|
|
6104
|
+
The following software may be included in this product: @rspack/binding-darwin-arm64 (1.6.8)
|
|
6081
6105
|
This software contains the following license and notice below:
|
|
6082
6106
|
|
|
6083
6107
|
MIT License
|
|
@@ -8980,6 +9004,33 @@ OTHER DEALINGS IN THE SOFTWARE.
|
|
|
8980
9004
|
|
|
8981
9005
|
---
|
|
8982
9006
|
|
|
9007
|
+
The following software may be included in this product: array-find-index (1.0.2)
|
|
9008
|
+
This software contains the following license and notice below:
|
|
9009
|
+
|
|
9010
|
+
The MIT License (MIT)
|
|
9011
|
+
|
|
9012
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
9013
|
+
|
|
9014
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
9015
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
9016
|
+
in the Software without restriction, including without limitation the rights
|
|
9017
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9018
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
9019
|
+
furnished to do so, subject to the following conditions:
|
|
9020
|
+
|
|
9021
|
+
The above copyright notice and this permission notice shall be included in
|
|
9022
|
+
all copies or substantial portions of the Software.
|
|
9023
|
+
|
|
9024
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
9025
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
9026
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
9027
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
9028
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
9029
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
9030
|
+
THE SOFTWARE.
|
|
9031
|
+
|
|
9032
|
+
---
|
|
9033
|
+
|
|
8983
9034
|
The following software may be included in this product: array-flatten (1.1.1)
|
|
8984
9035
|
This software contains the following license and notice below:
|
|
8985
9036
|
|
|
@@ -14556,6 +14607,34 @@ OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHE
|
|
|
14556
14607
|
|
|
14557
14608
|
---
|
|
14558
14609
|
|
|
14610
|
+
The following software may be included in this product: fsevents (2.3.3)
|
|
14611
|
+
This software contains the following license and notice below:
|
|
14612
|
+
|
|
14613
|
+
MIT License
|
|
14614
|
+
-----------
|
|
14615
|
+
|
|
14616
|
+
Copyright (C) 2010-2020 by Philipp Dunkel, Ben Noordhuis, Elan Shankar, Paul Miller
|
|
14617
|
+
|
|
14618
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
14619
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
14620
|
+
in the Software without restriction, including without limitation the rights
|
|
14621
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14622
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
14623
|
+
furnished to do so, subject to the following conditions:
|
|
14624
|
+
|
|
14625
|
+
The above copyright notice and this permission notice shall be included in
|
|
14626
|
+
all copies or substantial portions of the Software.
|
|
14627
|
+
|
|
14628
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14629
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
14630
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
14631
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
14632
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
14633
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
14634
|
+
THE SOFTWARE.
|
|
14635
|
+
|
|
14636
|
+
---
|
|
14637
|
+
|
|
14559
14638
|
The following software may be included in this product: function-bind (1.1.2)
|
|
14560
14639
|
This software contains the following license and notice below:
|
|
14561
14640
|
|
|
@@ -16433,33 +16512,6 @@ SOFTWARE.
|
|
|
16433
16512
|
|
|
16434
16513
|
---
|
|
16435
16514
|
|
|
16436
|
-
The following software may be included in this product: jiti (2.5.1)
|
|
16437
|
-
This software contains the following license and notice below:
|
|
16438
|
-
|
|
16439
|
-
MIT License
|
|
16440
|
-
|
|
16441
|
-
Copyright (c) Pooya Parsa <pooya@pi0.io>
|
|
16442
|
-
|
|
16443
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
16444
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
16445
|
-
in the Software without restriction, including without limitation the rights
|
|
16446
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
16447
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
16448
|
-
furnished to do so, subject to the following conditions:
|
|
16449
|
-
|
|
16450
|
-
The above copyright notice and this permission notice shall be included in all
|
|
16451
|
-
copies or substantial portions of the Software.
|
|
16452
|
-
|
|
16453
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16454
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16455
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16456
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
16457
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
16458
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
16459
|
-
SOFTWARE.
|
|
16460
|
-
|
|
16461
|
-
---
|
|
16462
|
-
|
|
16463
16515
|
The following software may be included in this product: jiti (2.6.1)
|
|
16464
16516
|
This software contains the following license and notice below:
|
|
16465
16517
|
|
|
@@ -16807,6 +16859,37 @@ distributed under the terms of the MIT license above.
|
|
|
16807
16859
|
|
|
16808
16860
|
---
|
|
16809
16861
|
|
|
16862
|
+
The following software may be included in this product: json-parse-even-better-errors (3.0.2)
|
|
16863
|
+
This software contains the following license and notice below:
|
|
16864
|
+
|
|
16865
|
+
Copyright 2017 Kat Marchán
|
|
16866
|
+
Copyright npm, Inc.
|
|
16867
|
+
|
|
16868
|
+
Permission is hereby granted, free of charge, to any person obtaining a
|
|
16869
|
+
copy of this software and associated documentation files (the "Software"),
|
|
16870
|
+
to deal in the Software without restriction, including without limitation
|
|
16871
|
+
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
16872
|
+
and/or sell copies of the Software, and to permit persons to whom the
|
|
16873
|
+
Software is furnished to do so, subject to the following conditions:
|
|
16874
|
+
|
|
16875
|
+
The above copyright notice and this permission notice shall be included in
|
|
16876
|
+
all copies or substantial portions of the Software.
|
|
16877
|
+
|
|
16878
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16879
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16880
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16881
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
16882
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
16883
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
16884
|
+
DEALINGS IN THE SOFTWARE.
|
|
16885
|
+
|
|
16886
|
+
---
|
|
16887
|
+
|
|
16888
|
+
This library is a fork of 'better-json-errors' by Kat Marchán, extended and
|
|
16889
|
+
distributed under the terms of the MIT license above.
|
|
16890
|
+
|
|
16891
|
+
---
|
|
16892
|
+
|
|
16810
16893
|
The following software may be included in this product: json-schema-traverse (0.4.1)
|
|
16811
16894
|
This software contains the following license and notice below:
|
|
16812
16895
|
|
|
@@ -17513,6 +17596,59 @@ terms above.
|
|
|
17513
17596
|
|
|
17514
17597
|
---
|
|
17515
17598
|
|
|
17599
|
+
The following software may be included in this product: lodash.clonedeep (4.5.0)
|
|
17600
|
+
This software contains the following license and notice below:
|
|
17601
|
+
|
|
17602
|
+
Copyright jQuery Foundation and other contributors <https://jquery.org/>
|
|
17603
|
+
|
|
17604
|
+
Based on Underscore.js, copyright Jeremy Ashkenas,
|
|
17605
|
+
DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
|
|
17606
|
+
|
|
17607
|
+
This software consists of voluntary contributions made by many
|
|
17608
|
+
individuals. For exact contribution history, see the revision history
|
|
17609
|
+
available at https://github.com/lodash/lodash
|
|
17610
|
+
|
|
17611
|
+
The following license applies to all parts of this software except as
|
|
17612
|
+
documented below:
|
|
17613
|
+
|
|
17614
|
+
====
|
|
17615
|
+
|
|
17616
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
17617
|
+
a copy of this software and associated documentation files (the
|
|
17618
|
+
"Software"), to deal in the Software without restriction, including
|
|
17619
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
17620
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
17621
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
17622
|
+
the following conditions:
|
|
17623
|
+
|
|
17624
|
+
The above copyright notice and this permission notice shall be
|
|
17625
|
+
included in all copies or substantial portions of the Software.
|
|
17626
|
+
|
|
17627
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17628
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
17629
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17630
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
17631
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
17632
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
17633
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
17634
|
+
|
|
17635
|
+
====
|
|
17636
|
+
|
|
17637
|
+
Copyright and related rights for sample code are waived via CC0. Sample
|
|
17638
|
+
code is defined as all source code displayed within the prose of the
|
|
17639
|
+
documentation.
|
|
17640
|
+
|
|
17641
|
+
CC0: http://creativecommons.org/publicdomain/zero/1.0/
|
|
17642
|
+
|
|
17643
|
+
====
|
|
17644
|
+
|
|
17645
|
+
Files located in the node_modules and vendor directories are externally
|
|
17646
|
+
maintained libraries used by this software which have their own
|
|
17647
|
+
licenses; we recommend you read them, as their terms may differ from the
|
|
17648
|
+
terms above.
|
|
17649
|
+
|
|
17650
|
+
---
|
|
17651
|
+
|
|
17516
17652
|
The following software may be included in this product: lodash.clonedeepwith (4.5.0)
|
|
17517
17653
|
This software contains the following license and notice below:
|
|
17518
17654
|
|
|
@@ -25027,6 +25163,103 @@ SOFTWARE.
|
|
|
25027
25163
|
|
|
25028
25164
|
---
|
|
25029
25165
|
|
|
25166
|
+
The following software may be included in this product: spdx-compare (1.0.0)
|
|
25167
|
+
This software contains the following license and notice below:
|
|
25168
|
+
|
|
25169
|
+
The MIT License
|
|
25170
|
+
|
|
25171
|
+
Copyright (c) 2015 Kyle E. Mitchell
|
|
25172
|
+
|
|
25173
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
25174
|
+
|
|
25175
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
25176
|
+
|
|
25177
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
25178
|
+
|
|
25179
|
+
---
|
|
25180
|
+
|
|
25181
|
+
The following software may be included in this product: spdx-expression-parse (3.0.1)
|
|
25182
|
+
This software contains the following license and notice below:
|
|
25183
|
+
|
|
25184
|
+
The MIT License
|
|
25185
|
+
|
|
25186
|
+
Copyright (c) 2015 Kyle E. Mitchell & other authors listed in AUTHORS
|
|
25187
|
+
|
|
25188
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
25189
|
+
a copy of this software and associated documentation files (the
|
|
25190
|
+
"Software"), to deal in the Software without restriction, including
|
|
25191
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
25192
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
25193
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
25194
|
+
the following conditions:
|
|
25195
|
+
|
|
25196
|
+
The above copyright notice and this permission notice shall be included
|
|
25197
|
+
in all copies or substantial portions of the Software.
|
|
25198
|
+
|
|
25199
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
25200
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
25201
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
25202
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
25203
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
25204
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
25205
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
25206
|
+
|
|
25207
|
+
---
|
|
25208
|
+
|
|
25209
|
+
The following software may be included in this product: spdx-satisfies (5.0.1)
|
|
25210
|
+
This software contains the following license and notice below:
|
|
25211
|
+
|
|
25212
|
+
The MIT License
|
|
25213
|
+
|
|
25214
|
+
Copyright (c) spdx-satisfies.js contributors
|
|
25215
|
+
|
|
25216
|
+
Permission is hereby granted, free of charge, to any person obtaining a
|
|
25217
|
+
copy of this software and associated documentation files (the "Software"),
|
|
25218
|
+
to deal in the Software without restriction, including without limitation
|
|
25219
|
+
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
25220
|
+
and/or sell copies of the Software, and to permit persons to whom the
|
|
25221
|
+
Software is furnished to do so, subject to the following conditions:
|
|
25222
|
+
|
|
25223
|
+
The above copyright notice and this permission notice shall be included
|
|
25224
|
+
in all copies or substantial portions of the Software.
|
|
25225
|
+
|
|
25226
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
25227
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
25228
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
25229
|
+
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
25230
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
25231
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
25232
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
25233
|
+
|
|
25234
|
+
---
|
|
25235
|
+
|
|
25236
|
+
The following software may be included in this product: spdx-satisfies (6.0.0)
|
|
25237
|
+
This software contains the following license and notice below:
|
|
25238
|
+
|
|
25239
|
+
The MIT License
|
|
25240
|
+
|
|
25241
|
+
Copyright (c) spdx-satisfies.js contributors
|
|
25242
|
+
|
|
25243
|
+
Permission is hereby granted, free of charge, to any person obtaining a
|
|
25244
|
+
copy of this software and associated documentation files (the "Software"),
|
|
25245
|
+
to deal in the Software without restriction, including without limitation
|
|
25246
|
+
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
25247
|
+
and/or sell copies of the Software, and to permit persons to whom the
|
|
25248
|
+
Software is furnished to do so, subject to the following conditions:
|
|
25249
|
+
|
|
25250
|
+
The above copyright notice and this permission notice shall be included
|
|
25251
|
+
in all copies or substantial portions of the Software.
|
|
25252
|
+
|
|
25253
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
25254
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
25255
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
25256
|
+
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
25257
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
25258
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
25259
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
25260
|
+
|
|
25261
|
+
---
|
|
25262
|
+
|
|
25030
25263
|
The following software may be included in this product: sshpk (1.18.0)
|
|
25031
25264
|
This software contains the following license and notice below:
|
|
25032
25265
|
|
|
@@ -26258,6 +26491,33 @@ SOFTWARE.
|
|
|
26258
26491
|
|
|
26259
26492
|
---
|
|
26260
26493
|
|
|
26494
|
+
The following software may be included in this product: treeify (1.1.0)
|
|
26495
|
+
This software contains the following license and notice below:
|
|
26496
|
+
|
|
26497
|
+
The MIT License (MIT)
|
|
26498
|
+
|
|
26499
|
+
Copyright (c) 2012-2018 Luke Plaster <notatestuser@gmail.com>
|
|
26500
|
+
|
|
26501
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
26502
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
26503
|
+
in the Software without restriction, including without limitation the rights
|
|
26504
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
26505
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
26506
|
+
furnished to do so, subject to the following conditions:
|
|
26507
|
+
|
|
26508
|
+
The above copyright notice and this permission notice shall be included in all
|
|
26509
|
+
copies or substantial portions of the Software.
|
|
26510
|
+
|
|
26511
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
26512
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
26513
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
26514
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
26515
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26516
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26517
|
+
SOFTWARE.
|
|
26518
|
+
|
|
26519
|
+
---
|
|
26520
|
+
|
|
26261
26521
|
The following software may be included in this product: trough (2.2.0)
|
|
26262
26522
|
This software contains the following license and notice below:
|
|
26263
26523
|
|
|
@@ -39093,6 +39353,213 @@ limitations under the License.
|
|
|
39093
39353
|
|
|
39094
39354
|
---
|
|
39095
39355
|
|
|
39356
|
+
The following software may be included in this product: spdx-correct (3.2.0)
|
|
39357
|
+
This software contains the following license and notice below:
|
|
39358
|
+
|
|
39359
|
+
Apache License
|
|
39360
|
+
Version 2.0, January 2004
|
|
39361
|
+
http://www.apache.org/licenses/
|
|
39362
|
+
|
|
39363
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
39364
|
+
|
|
39365
|
+
1. Definitions.
|
|
39366
|
+
|
|
39367
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
39368
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
39369
|
+
|
|
39370
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
39371
|
+
the copyright owner that is granting the License.
|
|
39372
|
+
|
|
39373
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
39374
|
+
other entities that control, are controlled by, or are under common
|
|
39375
|
+
control with that entity. For the purposes of this definition,
|
|
39376
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
39377
|
+
direction or management of such entity, whether by contract or
|
|
39378
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
39379
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
39380
|
+
|
|
39381
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
39382
|
+
exercising permissions granted by this License.
|
|
39383
|
+
|
|
39384
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
39385
|
+
including but not limited to software source code, documentation
|
|
39386
|
+
source, and configuration files.
|
|
39387
|
+
|
|
39388
|
+
"Object" form shall mean any form resulting from mechanical
|
|
39389
|
+
transformation or translation of a Source form, including but
|
|
39390
|
+
not limited to compiled object code, generated documentation,
|
|
39391
|
+
and conversions to other media types.
|
|
39392
|
+
|
|
39393
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
39394
|
+
Object form, made available under the License, as indicated by a
|
|
39395
|
+
copyright notice that is included in or attached to the work
|
|
39396
|
+
(an example is provided in the Appendix below).
|
|
39397
|
+
|
|
39398
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
39399
|
+
form, that is based on (or derived from) the Work and for which the
|
|
39400
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
39401
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
39402
|
+
of this License, Derivative Works shall not include works that remain
|
|
39403
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
39404
|
+
the Work and Derivative Works thereof.
|
|
39405
|
+
|
|
39406
|
+
"Contribution" shall mean any work of authorship, including
|
|
39407
|
+
the original version of the Work and any modifications or additions
|
|
39408
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
39409
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
39410
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
39411
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
39412
|
+
means any form of electronic, verbal, or written communication sent
|
|
39413
|
+
to the Licensor or its representatives, including but not limited to
|
|
39414
|
+
communication on electronic mailing lists, source code control systems,
|
|
39415
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
39416
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
39417
|
+
excluding communication that is conspicuously marked or otherwise
|
|
39418
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
39419
|
+
|
|
39420
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
39421
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
39422
|
+
subsequently incorporated within the Work.
|
|
39423
|
+
|
|
39424
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
39425
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
39426
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
39427
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
39428
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
39429
|
+
Work and such Derivative Works in Source or Object form.
|
|
39430
|
+
|
|
39431
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
39432
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
39433
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
39434
|
+
(except as stated in this section) patent license to make, have made,
|
|
39435
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
39436
|
+
where such license applies only to those patent claims licensable
|
|
39437
|
+
by such Contributor that are necessarily infringed by their
|
|
39438
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
39439
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
39440
|
+
institute patent litigation against any entity (including a
|
|
39441
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
39442
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
39443
|
+
or contributory patent infringement, then any patent licenses
|
|
39444
|
+
granted to You under this License for that Work shall terminate
|
|
39445
|
+
as of the date such litigation is filed.
|
|
39446
|
+
|
|
39447
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
39448
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
39449
|
+
modifications, and in Source or Object form, provided that You
|
|
39450
|
+
meet the following conditions:
|
|
39451
|
+
|
|
39452
|
+
(a) You must give any other recipients of the Work or
|
|
39453
|
+
Derivative Works a copy of this License; and
|
|
39454
|
+
|
|
39455
|
+
(b) You must cause any modified files to carry prominent notices
|
|
39456
|
+
stating that You changed the files; and
|
|
39457
|
+
|
|
39458
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
39459
|
+
that You distribute, all copyright, patent, trademark, and
|
|
39460
|
+
attribution notices from the Source form of the Work,
|
|
39461
|
+
excluding those notices that do not pertain to any part of
|
|
39462
|
+
the Derivative Works; and
|
|
39463
|
+
|
|
39464
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
39465
|
+
distribution, then any Derivative Works that You distribute must
|
|
39466
|
+
include a readable copy of the attribution notices contained
|
|
39467
|
+
within such NOTICE file, excluding those notices that do not
|
|
39468
|
+
pertain to any part of the Derivative Works, in at least one
|
|
39469
|
+
of the following places: within a NOTICE text file distributed
|
|
39470
|
+
as part of the Derivative Works; within the Source form or
|
|
39471
|
+
documentation, if provided along with the Derivative Works; or,
|
|
39472
|
+
within a display generated by the Derivative Works, if and
|
|
39473
|
+
wherever such third-party notices normally appear. The contents
|
|
39474
|
+
of the NOTICE file are for informational purposes only and
|
|
39475
|
+
do not modify the License. You may add Your own attribution
|
|
39476
|
+
notices within Derivative Works that You distribute, alongside
|
|
39477
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
39478
|
+
that such additional attribution notices cannot be construed
|
|
39479
|
+
as modifying the License.
|
|
39480
|
+
|
|
39481
|
+
You may add Your own copyright statement to Your modifications and
|
|
39482
|
+
may provide additional or different license terms and conditions
|
|
39483
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
39484
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
39485
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
39486
|
+
the conditions stated in this License.
|
|
39487
|
+
|
|
39488
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
39489
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
39490
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
39491
|
+
this License, without any additional terms or conditions.
|
|
39492
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
39493
|
+
the terms of any separate license agreement you may have executed
|
|
39494
|
+
with Licensor regarding such Contributions.
|
|
39495
|
+
|
|
39496
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
39497
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
39498
|
+
except as required for reasonable and customary use in describing the
|
|
39499
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
39500
|
+
|
|
39501
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
39502
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
39503
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
39504
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
39505
|
+
implied, including, without limitation, any warranties or conditions
|
|
39506
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
39507
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
39508
|
+
appropriateness of using or redistributing the Work and assume any
|
|
39509
|
+
risks associated with Your exercise of permissions under this License.
|
|
39510
|
+
|
|
39511
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
39512
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
39513
|
+
unless required by applicable law (such as deliberate and grossly
|
|
39514
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
39515
|
+
liable to You for damages, including any direct, indirect, special,
|
|
39516
|
+
incidental, or consequential damages of any character arising as a
|
|
39517
|
+
result of this License or out of the use or inability to use the
|
|
39518
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
39519
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
39520
|
+
other commercial damages or losses), even if such Contributor
|
|
39521
|
+
has been advised of the possibility of such damages.
|
|
39522
|
+
|
|
39523
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
39524
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
39525
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
39526
|
+
or other liability obligations and/or rights consistent with this
|
|
39527
|
+
License. However, in accepting such obligations, You may act only
|
|
39528
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
39529
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
39530
|
+
defend, and hold each Contributor harmless for any liability
|
|
39531
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
39532
|
+
of your accepting any such warranty or additional liability.
|
|
39533
|
+
|
|
39534
|
+
END OF TERMS AND CONDITIONS
|
|
39535
|
+
|
|
39536
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
39537
|
+
|
|
39538
|
+
To apply the Apache License to your work, attach the following
|
|
39539
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
39540
|
+
replaced with your own identifying information. (Don't include
|
|
39541
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
39542
|
+
comment syntax for the file format. We also recommend that a
|
|
39543
|
+
file or class name and description of purpose be included on the
|
|
39544
|
+
same "printed page" as the copyright notice for easier
|
|
39545
|
+
identification within third-party archives.
|
|
39546
|
+
|
|
39547
|
+
Copyright [yyyy] [name of copyright owner]
|
|
39548
|
+
|
|
39549
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
39550
|
+
you may not use this file except in compliance with the License.
|
|
39551
|
+
You may obtain a copy of the License at
|
|
39552
|
+
|
|
39553
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
39554
|
+
|
|
39555
|
+
Unless required by applicable law or agreed to in writing, software
|
|
39556
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
39557
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
39558
|
+
See the License for the specific language governing permissions and
|
|
39559
|
+
limitations under the License.
|
|
39560
|
+
|
|
39561
|
+
---
|
|
39562
|
+
|
|
39096
39563
|
The following software may be included in this product: text-decoder (1.2.3)
|
|
39097
39564
|
This software contains the following license and notice below:
|
|
39098
39565
|
|
|
@@ -39483,6 +39950,213 @@ END OF TERMS AND CONDITIONS
|
|
|
39483
39950
|
|
|
39484
39951
|
---
|
|
39485
39952
|
|
|
39953
|
+
The following software may be included in this product: validate-npm-package-license (3.0.4)
|
|
39954
|
+
This software contains the following license and notice below:
|
|
39955
|
+
|
|
39956
|
+
Apache License
|
|
39957
|
+
Version 2.0, January 2004
|
|
39958
|
+
http://www.apache.org/licenses/
|
|
39959
|
+
|
|
39960
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
39961
|
+
|
|
39962
|
+
1. Definitions.
|
|
39963
|
+
|
|
39964
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
39965
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
39966
|
+
|
|
39967
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
39968
|
+
the copyright owner that is granting the License.
|
|
39969
|
+
|
|
39970
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
39971
|
+
other entities that control, are controlled by, or are under common
|
|
39972
|
+
control with that entity. For the purposes of this definition,
|
|
39973
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
39974
|
+
direction or management of such entity, whether by contract or
|
|
39975
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
39976
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
39977
|
+
|
|
39978
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
39979
|
+
exercising permissions granted by this License.
|
|
39980
|
+
|
|
39981
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
39982
|
+
including but not limited to software source code, documentation
|
|
39983
|
+
source, and configuration files.
|
|
39984
|
+
|
|
39985
|
+
"Object" form shall mean any form resulting from mechanical
|
|
39986
|
+
transformation or translation of a Source form, including but
|
|
39987
|
+
not limited to compiled object code, generated documentation,
|
|
39988
|
+
and conversions to other media types.
|
|
39989
|
+
|
|
39990
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
39991
|
+
Object form, made available under the License, as indicated by a
|
|
39992
|
+
copyright notice that is included in or attached to the work
|
|
39993
|
+
(an example is provided in the Appendix below).
|
|
39994
|
+
|
|
39995
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
39996
|
+
form, that is based on (or derived from) the Work and for which the
|
|
39997
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
39998
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
39999
|
+
of this License, Derivative Works shall not include works that remain
|
|
40000
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
40001
|
+
the Work and Derivative Works thereof.
|
|
40002
|
+
|
|
40003
|
+
"Contribution" shall mean any work of authorship, including
|
|
40004
|
+
the original version of the Work and any modifications or additions
|
|
40005
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
40006
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
40007
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
40008
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
40009
|
+
means any form of electronic, verbal, or written communication sent
|
|
40010
|
+
to the Licensor or its representatives, including but not limited to
|
|
40011
|
+
communication on electronic mailing lists, source code control systems,
|
|
40012
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
40013
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
40014
|
+
excluding communication that is conspicuously marked or otherwise
|
|
40015
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
40016
|
+
|
|
40017
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
40018
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
40019
|
+
subsequently incorporated within the Work.
|
|
40020
|
+
|
|
40021
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
40022
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
40023
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
40024
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
40025
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
40026
|
+
Work and such Derivative Works in Source or Object form.
|
|
40027
|
+
|
|
40028
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
40029
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
40030
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
40031
|
+
(except as stated in this section) patent license to make, have made,
|
|
40032
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
40033
|
+
where such license applies only to those patent claims licensable
|
|
40034
|
+
by such Contributor that are necessarily infringed by their
|
|
40035
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
40036
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
40037
|
+
institute patent litigation against any entity (including a
|
|
40038
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
40039
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
40040
|
+
or contributory patent infringement, then any patent licenses
|
|
40041
|
+
granted to You under this License for that Work shall terminate
|
|
40042
|
+
as of the date such litigation is filed.
|
|
40043
|
+
|
|
40044
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
40045
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
40046
|
+
modifications, and in Source or Object form, provided that You
|
|
40047
|
+
meet the following conditions:
|
|
40048
|
+
|
|
40049
|
+
(a) You must give any other recipients of the Work or
|
|
40050
|
+
Derivative Works a copy of this License; and
|
|
40051
|
+
|
|
40052
|
+
(b) You must cause any modified files to carry prominent notices
|
|
40053
|
+
stating that You changed the files; and
|
|
40054
|
+
|
|
40055
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
40056
|
+
that You distribute, all copyright, patent, trademark, and
|
|
40057
|
+
attribution notices from the Source form of the Work,
|
|
40058
|
+
excluding those notices that do not pertain to any part of
|
|
40059
|
+
the Derivative Works; and
|
|
40060
|
+
|
|
40061
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
40062
|
+
distribution, then any Derivative Works that You distribute must
|
|
40063
|
+
include a readable copy of the attribution notices contained
|
|
40064
|
+
within such NOTICE file, excluding those notices that do not
|
|
40065
|
+
pertain to any part of the Derivative Works, in at least one
|
|
40066
|
+
of the following places: within a NOTICE text file distributed
|
|
40067
|
+
as part of the Derivative Works; within the Source form or
|
|
40068
|
+
documentation, if provided along with the Derivative Works; or,
|
|
40069
|
+
within a display generated by the Derivative Works, if and
|
|
40070
|
+
wherever such third-party notices normally appear. The contents
|
|
40071
|
+
of the NOTICE file are for informational purposes only and
|
|
40072
|
+
do not modify the License. You may add Your own attribution
|
|
40073
|
+
notices within Derivative Works that You distribute, alongside
|
|
40074
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
40075
|
+
that such additional attribution notices cannot be construed
|
|
40076
|
+
as modifying the License.
|
|
40077
|
+
|
|
40078
|
+
You may add Your own copyright statement to Your modifications and
|
|
40079
|
+
may provide additional or different license terms and conditions
|
|
40080
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
40081
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
40082
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
40083
|
+
the conditions stated in this License.
|
|
40084
|
+
|
|
40085
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
40086
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
40087
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
40088
|
+
this License, without any additional terms or conditions.
|
|
40089
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
40090
|
+
the terms of any separate license agreement you may have executed
|
|
40091
|
+
with Licensor regarding such Contributions.
|
|
40092
|
+
|
|
40093
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
40094
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
40095
|
+
except as required for reasonable and customary use in describing the
|
|
40096
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
40097
|
+
|
|
40098
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
40099
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
40100
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
40101
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
40102
|
+
implied, including, without limitation, any warranties or conditions
|
|
40103
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
40104
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
40105
|
+
appropriateness of using or redistributing the Work and assume any
|
|
40106
|
+
risks associated with Your exercise of permissions under this License.
|
|
40107
|
+
|
|
40108
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
40109
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
40110
|
+
unless required by applicable law (such as deliberate and grossly
|
|
40111
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
40112
|
+
liable to You for damages, including any direct, indirect, special,
|
|
40113
|
+
incidental, or consequential damages of any character arising as a
|
|
40114
|
+
result of this License or out of the use or inability to use the
|
|
40115
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
40116
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
40117
|
+
other commercial damages or losses), even if such Contributor
|
|
40118
|
+
has been advised of the possibility of such damages.
|
|
40119
|
+
|
|
40120
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
40121
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
40122
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
40123
|
+
or other liability obligations and/or rights consistent with this
|
|
40124
|
+
License. However, in accepting such obligations, You may act only
|
|
40125
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
40126
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
40127
|
+
defend, and hold each Contributor harmless for any liability
|
|
40128
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
40129
|
+
of your accepting any such warranty or additional liability.
|
|
40130
|
+
|
|
40131
|
+
END OF TERMS AND CONDITIONS
|
|
40132
|
+
|
|
40133
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
40134
|
+
|
|
40135
|
+
To apply the Apache License to your work, attach the following
|
|
40136
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
40137
|
+
replaced with your own identifying information. (Don't include
|
|
40138
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
40139
|
+
comment syntax for the file format. We also recommend that a
|
|
40140
|
+
file or class name and description of purpose be included on the
|
|
40141
|
+
same "printed page" as the copyright notice for easier
|
|
40142
|
+
identification within third-party archives.
|
|
40143
|
+
|
|
40144
|
+
Copyright [yyyy] [name of copyright owner]
|
|
40145
|
+
|
|
40146
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
40147
|
+
you may not use this file except in compliance with the License.
|
|
40148
|
+
You may obtain a copy of the License at
|
|
40149
|
+
|
|
40150
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
40151
|
+
|
|
40152
|
+
Unless required by applicable law or agreed to in writing, software
|
|
40153
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
40154
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
40155
|
+
See the License for the specific language governing permissions and
|
|
40156
|
+
limitations under the License.
|
|
40157
|
+
|
|
40158
|
+
---
|
|
40159
|
+
|
|
39486
40160
|
The following software may be included in this product: xml-name-validator (5.0.0)
|
|
39487
40161
|
This software contains the following license and notice below:
|
|
39488
40162
|
|
|
@@ -39704,6 +40378,32 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
39704
40378
|
|
|
39705
40379
|
---
|
|
39706
40380
|
|
|
40381
|
+
The following software may be included in this product: @npmcli/fs (3.1.1)
|
|
40382
|
+
This software contains the following license and notice below:
|
|
40383
|
+
|
|
40384
|
+
<!-- This file is automatically added by @npmcli/template-oss. Do not edit. -->
|
|
40385
|
+
|
|
40386
|
+
ISC License
|
|
40387
|
+
|
|
40388
|
+
Copyright npm, Inc.
|
|
40389
|
+
|
|
40390
|
+
Permission to use, copy, modify, and/or distribute this
|
|
40391
|
+
software for any purpose with or without fee is hereby
|
|
40392
|
+
granted, provided that the above copyright notice and this
|
|
40393
|
+
permission notice appear in all copies.
|
|
40394
|
+
|
|
40395
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND NPM DISCLAIMS ALL
|
|
40396
|
+
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
|
|
40397
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO
|
|
40398
|
+
EVENT SHALL NPM BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
40399
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
40400
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
40401
|
+
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
40402
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE
|
|
40403
|
+
USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
40404
|
+
|
|
40405
|
+
---
|
|
40406
|
+
|
|
39707
40407
|
The following software may be included in this product: @trysound/sax (0.2.0)
|
|
39708
40408
|
This software contains the following license and notice below:
|
|
39709
40409
|
|
|
@@ -39725,6 +40425,58 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
39725
40425
|
|
|
39726
40426
|
---
|
|
39727
40427
|
|
|
40428
|
+
The following software may be included in this product: abbrev (2.0.0)
|
|
40429
|
+
This software contains the following license and notice below:
|
|
40430
|
+
|
|
40431
|
+
This software is dual-licensed under the ISC and MIT licenses.
|
|
40432
|
+
You may use this software under EITHER of the following licenses.
|
|
40433
|
+
|
|
40434
|
+
----------
|
|
40435
|
+
|
|
40436
|
+
The ISC License
|
|
40437
|
+
|
|
40438
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
40439
|
+
|
|
40440
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
40441
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
40442
|
+
copyright notice and this permission notice appear in all copies.
|
|
40443
|
+
|
|
40444
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
40445
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
40446
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
40447
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
40448
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
40449
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
40450
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
40451
|
+
|
|
40452
|
+
----------
|
|
40453
|
+
|
|
40454
|
+
Copyright Isaac Z. Schlueter and Contributors
|
|
40455
|
+
All rights reserved.
|
|
40456
|
+
|
|
40457
|
+
Permission is hereby granted, free of charge, to any person
|
|
40458
|
+
obtaining a copy of this software and associated documentation
|
|
40459
|
+
files (the "Software"), to deal in the Software without
|
|
40460
|
+
restriction, including without limitation the rights to use,
|
|
40461
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
40462
|
+
copies of the Software, and to permit persons to whom the
|
|
40463
|
+
Software is furnished to do so, subject to the following
|
|
40464
|
+
conditions:
|
|
40465
|
+
|
|
40466
|
+
The above copyright notice and this permission notice shall be
|
|
40467
|
+
included in all copies or substantial portions of the Software.
|
|
40468
|
+
|
|
40469
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
40470
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
40471
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
40472
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
40473
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
40474
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
40475
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
40476
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
40477
|
+
|
|
40478
|
+
---
|
|
40479
|
+
|
|
39728
40480
|
The following software may be included in this product: at-least-node (1.0.0)
|
|
39729
40481
|
This software contains the following license and notice below:
|
|
39730
40482
|
|
|
@@ -40074,6 +40826,25 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
40074
40826
|
|
|
40075
40827
|
---
|
|
40076
40828
|
|
|
40829
|
+
The following software may be included in this product: hosted-git-info (6.1.3)
|
|
40830
|
+
This software contains the following license and notice below:
|
|
40831
|
+
|
|
40832
|
+
Copyright (c) 2015, Rebecca Turner
|
|
40833
|
+
|
|
40834
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
40835
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
40836
|
+
copyright notice and this permission notice appear in all copies.
|
|
40837
|
+
|
|
40838
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
40839
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
40840
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
40841
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
40842
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
40843
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
40844
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
40845
|
+
|
|
40846
|
+
---
|
|
40847
|
+
|
|
40077
40848
|
The following software may be included in this product: icss-utils (5.1.0)
|
|
40078
40849
|
This software contains the following license and notice below:
|
|
40079
40850
|
|
|
@@ -40422,6 +41193,48 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
40422
41193
|
|
|
40423
41194
|
---
|
|
40424
41195
|
|
|
41196
|
+
The following software may be included in this product: nopt (7.2.1)
|
|
41197
|
+
This software contains the following license and notice below:
|
|
41198
|
+
|
|
41199
|
+
The ISC License
|
|
41200
|
+
|
|
41201
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
41202
|
+
|
|
41203
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
41204
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
41205
|
+
copyright notice and this permission notice appear in all copies.
|
|
41206
|
+
|
|
41207
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
41208
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
41209
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
41210
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
41211
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
41212
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
41213
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
41214
|
+
|
|
41215
|
+
---
|
|
41216
|
+
|
|
41217
|
+
The following software may be included in this product: npm-normalize-package-bin (3.0.1)
|
|
41218
|
+
This software contains the following license and notice below:
|
|
41219
|
+
|
|
41220
|
+
The ISC License
|
|
41221
|
+
|
|
41222
|
+
Copyright (c) npm, Inc.
|
|
41223
|
+
|
|
41224
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
41225
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
41226
|
+
copyright notice and this permission notice appear in all copies.
|
|
41227
|
+
|
|
41228
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
41229
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
41230
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
41231
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
41232
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
41233
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
41234
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
41235
|
+
|
|
41236
|
+
---
|
|
41237
|
+
|
|
40425
41238
|
The following software may be included in this product: once (1.4.0)
|
|
40426
41239
|
This software contains the following license and notice below:
|
|
40427
41240
|
|
|
@@ -40501,6 +41314,48 @@ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH RE
|
|
|
40501
41314
|
|
|
40502
41315
|
---
|
|
40503
41316
|
|
|
41317
|
+
The following software may be included in this product: read-installed-packages (2.0.1)
|
|
41318
|
+
This software contains the following license and notice below:
|
|
41319
|
+
|
|
41320
|
+
The ISC License
|
|
41321
|
+
|
|
41322
|
+
Copyright (c) Isaac Z. Schlueter, Dmitry Semigradsky
|
|
41323
|
+
|
|
41324
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
41325
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
41326
|
+
copyright notice and this permission notice appear in all copies.
|
|
41327
|
+
|
|
41328
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
41329
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
41330
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
41331
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
41332
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
41333
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
41334
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
41335
|
+
|
|
41336
|
+
---
|
|
41337
|
+
|
|
41338
|
+
The following software may be included in this product: read-package-json (6.0.4)
|
|
41339
|
+
This software contains the following license and notice below:
|
|
41340
|
+
|
|
41341
|
+
The ISC License
|
|
41342
|
+
|
|
41343
|
+
Copyright (c) Isaac Z. Schlueter
|
|
41344
|
+
|
|
41345
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
41346
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
41347
|
+
copyright notice and this permission notice appear in all copies.
|
|
41348
|
+
|
|
41349
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
41350
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
41351
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
41352
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
41353
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
41354
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
41355
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
41356
|
+
|
|
41357
|
+
---
|
|
41358
|
+
|
|
40504
41359
|
The following software may be included in this product: saxes (6.0.0)
|
|
40505
41360
|
This software contains the following license and notice below:
|
|
40506
41361
|
|
|
@@ -40683,6 +41538,27 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
40683
41538
|
|
|
40684
41539
|
---
|
|
40685
41540
|
|
|
41541
|
+
The following software may be included in this product: slide (1.1.6)
|
|
41542
|
+
This software contains the following license and notice below:
|
|
41543
|
+
|
|
41544
|
+
The ISC License
|
|
41545
|
+
|
|
41546
|
+
Copyright (c) Isaac Z. Schlueter
|
|
41547
|
+
|
|
41548
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
41549
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
41550
|
+
copyright notice and this permission notice appear in all copies.
|
|
41551
|
+
|
|
41552
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
41553
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
41554
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
41555
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
41556
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
41557
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
41558
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
41559
|
+
|
|
41560
|
+
---
|
|
41561
|
+
|
|
40686
41562
|
The following software may be included in this product: split2 (4.2.0)
|
|
40687
41563
|
This software contains the following license and notice below:
|
|
40688
41564
|
|
|
@@ -40926,7 +41802,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
40926
41802
|
|
|
40927
41803
|
---
|
|
40928
41804
|
|
|
40929
|
-
The following software may be included in this product: @swc/core-
|
|
41805
|
+
The following software may be included in this product: @swc/core-darwin-arm64 (1.15.40)
|
|
40930
41806
|
This software contains the following license and notice below:
|
|
40931
41807
|
|
|
40932
41808
|
Apache License
|
|
@@ -41450,6 +42326,35 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
41450
42326
|
|
|
41451
42327
|
---
|
|
41452
42328
|
|
|
42329
|
+
The following software may be included in this product: license-checker-rseidelsohn (4.4.2)
|
|
42330
|
+
This software contains the following license and notice below:
|
|
42331
|
+
|
|
42332
|
+
Copyright 2012 Yahoo Inc.
|
|
42333
|
+
|
|
42334
|
+
Redistribution and use in source and binary forms, with or without
|
|
42335
|
+
modification, are permitted provided that the following conditions are met:
|
|
42336
|
+
* Redistributions of source code must retain the above copyright
|
|
42337
|
+
notice, this list of conditions and the following disclaimer.
|
|
42338
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
42339
|
+
notice, this list of conditions and the following disclaimer in the
|
|
42340
|
+
documentation and/or other materials provided with the distribution.
|
|
42341
|
+
* Neither the name of the Yahoo! Inc. nor the
|
|
42342
|
+
names of its contributors may be used to endorse or promote products
|
|
42343
|
+
derived from this software without specific prior written permission.
|
|
42344
|
+
|
|
42345
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
42346
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
42347
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
42348
|
+
DISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY
|
|
42349
|
+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
42350
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
42351
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
42352
|
+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
42353
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
42354
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
42355
|
+
|
|
42356
|
+
---
|
|
42357
|
+
|
|
41453
42358
|
The following software may be included in this product: qs (6.13.0)
|
|
41454
42359
|
This software contains the following license and notice below:
|
|
41455
42360
|
|
|
@@ -42222,6 +43127,27 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
42222
43127
|
|
|
42223
43128
|
---
|
|
42224
43129
|
|
|
43130
|
+
The following software may be included in this product: normalize-package-data (5.0.0)
|
|
43131
|
+
This software contains the following license and notice below:
|
|
43132
|
+
|
|
43133
|
+
This package contains code originally written by Isaac Z. Schlueter.
|
|
43134
|
+
Used with permission.
|
|
43135
|
+
|
|
43136
|
+
Copyright (c) Meryn Stol ("Author")
|
|
43137
|
+
All rights reserved.
|
|
43138
|
+
|
|
43139
|
+
The BSD License
|
|
43140
|
+
|
|
43141
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
43142
|
+
|
|
43143
|
+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
43144
|
+
|
|
43145
|
+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
43146
|
+
|
|
43147
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
43148
|
+
|
|
43149
|
+
---
|
|
43150
|
+
|
|
42225
43151
|
The following software may be included in this product: nth-check (2.1.1)
|
|
42226
43152
|
This software contains the following license and notice below:
|
|
42227
43153
|
|
|
@@ -44159,7 +45085,7 @@ defined by the Mozilla Public License, v. 2.0.
|
|
|
44159
45085
|
|
|
44160
45086
|
---
|
|
44161
45087
|
|
|
44162
|
-
The following software may be included in this product: lightningcss-
|
|
45088
|
+
The following software may be included in this product: lightningcss-darwin-arm64 (1.32.0)
|
|
44163
45089
|
This software contains the following license and notice below:
|
|
44164
45090
|
|
|
44165
45091
|
Mozilla Public License Version 2.0
|
|
@@ -45283,6 +46209,134 @@ For more information, please see
|
|
|
45283
46209
|
|
|
45284
46210
|
---
|
|
45285
46211
|
|
|
46212
|
+
The following software may be included in this product: spdx-license-ids (3.0.23)
|
|
46213
|
+
This software was created by Shinnosuke Watanabe
|
|
46214
|
+
This software contains the following license and notice below:
|
|
46215
|
+
|
|
46216
|
+
Creative Commons Legal Code
|
|
46217
|
+
|
|
46218
|
+
CC0 1.0 Universal
|
|
46219
|
+
|
|
46220
|
+
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
|
|
46221
|
+
LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
|
|
46222
|
+
ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
|
|
46223
|
+
INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
|
|
46224
|
+
REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
|
|
46225
|
+
PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
|
|
46226
|
+
THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
|
|
46227
|
+
HEREUNDER.
|
|
46228
|
+
|
|
46229
|
+
Statement of Purpose
|
|
46230
|
+
|
|
46231
|
+
The laws of most jurisdictions throughout the world automatically confer
|
|
46232
|
+
exclusive Copyright and Related Rights (defined below) upon the creator
|
|
46233
|
+
and subsequent owner(s) (each and all, an "owner") of an original work of
|
|
46234
|
+
authorship and/or a database (each, a "Work").
|
|
46235
|
+
|
|
46236
|
+
Certain owners wish to permanently relinquish those rights to a Work for
|
|
46237
|
+
the purpose of contributing to a commons of creative, cultural and
|
|
46238
|
+
scientific works ("Commons") that the public can reliably and without fear
|
|
46239
|
+
of later claims of infringement build upon, modify, incorporate in other
|
|
46240
|
+
works, reuse and redistribute as freely as possible in any form whatsoever
|
|
46241
|
+
and for any purposes, including without limitation commercial purposes.
|
|
46242
|
+
These owners may contribute to the Commons to promote the ideal of a free
|
|
46243
|
+
culture and the further production of creative, cultural and scientific
|
|
46244
|
+
works, or to gain reputation or greater distribution for their Work in
|
|
46245
|
+
part through the use and efforts of others.
|
|
46246
|
+
|
|
46247
|
+
For these and/or other purposes and motivations, and without any
|
|
46248
|
+
expectation of additional consideration or compensation, the person
|
|
46249
|
+
associating CC0 with a Work (the "Affirmer"), to the extent that he or she
|
|
46250
|
+
is an owner of Copyright and Related Rights in the Work, voluntarily
|
|
46251
|
+
elects to apply CC0 to the Work and publicly distribute the Work under its
|
|
46252
|
+
terms, with knowledge of his or her Copyright and Related Rights in the
|
|
46253
|
+
Work and the meaning and intended legal effect of CC0 on those rights.
|
|
46254
|
+
|
|
46255
|
+
1. Copyright and Related Rights. A Work made available under CC0 may be
|
|
46256
|
+
protected by copyright and related or neighboring rights ("Copyright and
|
|
46257
|
+
Related Rights"). Copyright and Related Rights include, but are not
|
|
46258
|
+
limited to, the following:
|
|
46259
|
+
|
|
46260
|
+
i. the right to reproduce, adapt, distribute, perform, display,
|
|
46261
|
+
communicate, and translate a Work;
|
|
46262
|
+
ii. moral rights retained by the original author(s) and/or performer(s);
|
|
46263
|
+
iii. publicity and privacy rights pertaining to a person's image or
|
|
46264
|
+
likeness depicted in a Work;
|
|
46265
|
+
iv. rights protecting against unfair competition in regards to a Work,
|
|
46266
|
+
subject to the limitations in paragraph 4(a), below;
|
|
46267
|
+
v. rights protecting the extraction, dissemination, use and reuse of data
|
|
46268
|
+
in a Work;
|
|
46269
|
+
vi. database rights (such as those arising under Directive 96/9/EC of the
|
|
46270
|
+
European Parliament and of the Council of 11 March 1996 on the legal
|
|
46271
|
+
protection of databases, and under any national implementation
|
|
46272
|
+
thereof, including any amended or successor version of such
|
|
46273
|
+
directive); and
|
|
46274
|
+
vii. other similar, equivalent or corresponding rights throughout the
|
|
46275
|
+
world based on applicable law or treaty, and any national
|
|
46276
|
+
implementations thereof.
|
|
46277
|
+
|
|
46278
|
+
2. Waiver. To the greatest extent permitted by, but not in contravention
|
|
46279
|
+
of, applicable law, Affirmer hereby overtly, fully, permanently,
|
|
46280
|
+
irrevocably and unconditionally waives, abandons, and surrenders all of
|
|
46281
|
+
Affirmer's Copyright and Related Rights and associated claims and causes
|
|
46282
|
+
of action, whether now known or unknown (including existing as well as
|
|
46283
|
+
future claims and causes of action), in the Work (i) in all territories
|
|
46284
|
+
worldwide, (ii) for the maximum duration provided by applicable law or
|
|
46285
|
+
treaty (including future time extensions), (iii) in any current or future
|
|
46286
|
+
medium and for any number of copies, and (iv) for any purpose whatsoever,
|
|
46287
|
+
including without limitation commercial, advertising or promotional
|
|
46288
|
+
purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
|
|
46289
|
+
member of the public at large and to the detriment of Affirmer's heirs and
|
|
46290
|
+
successors, fully intending that such Waiver shall not be subject to
|
|
46291
|
+
revocation, rescission, cancellation, termination, or any other legal or
|
|
46292
|
+
equitable action to disrupt the quiet enjoyment of the Work by the public
|
|
46293
|
+
as contemplated by Affirmer's express Statement of Purpose.
|
|
46294
|
+
|
|
46295
|
+
3. Public License Fallback. Should any part of the Waiver for any reason
|
|
46296
|
+
be judged legally invalid or ineffective under applicable law, then the
|
|
46297
|
+
Waiver shall be preserved to the maximum extent permitted taking into
|
|
46298
|
+
account Affirmer's express Statement of Purpose. In addition, to the
|
|
46299
|
+
extent the Waiver is so judged Affirmer hereby grants to each affected
|
|
46300
|
+
person a royalty-free, non transferable, non sublicensable, non exclusive,
|
|
46301
|
+
irrevocable and unconditional license to exercise Affirmer's Copyright and
|
|
46302
|
+
Related Rights in the Work (i) in all territories worldwide, (ii) for the
|
|
46303
|
+
maximum duration provided by applicable law or treaty (including future
|
|
46304
|
+
time extensions), (iii) in any current or future medium and for any number
|
|
46305
|
+
of copies, and (iv) for any purpose whatsoever, including without
|
|
46306
|
+
limitation commercial, advertising or promotional purposes (the
|
|
46307
|
+
"License"). The License shall be deemed effective as of the date CC0 was
|
|
46308
|
+
applied by Affirmer to the Work. Should any part of the License for any
|
|
46309
|
+
reason be judged legally invalid or ineffective under applicable law, such
|
|
46310
|
+
partial invalidity or ineffectiveness shall not invalidate the remainder
|
|
46311
|
+
of the License, and in such case Affirmer hereby affirms that he or she
|
|
46312
|
+
will not (i) exercise any of his or her remaining Copyright and Related
|
|
46313
|
+
Rights in the Work or (ii) assert any associated claims and causes of
|
|
46314
|
+
action with respect to the Work, in either case contrary to Affirmer's
|
|
46315
|
+
express Statement of Purpose.
|
|
46316
|
+
|
|
46317
|
+
4. Limitations and Disclaimers.
|
|
46318
|
+
|
|
46319
|
+
a. No trademark or patent rights held by Affirmer are waived, abandoned,
|
|
46320
|
+
surrendered, licensed or otherwise affected by this document.
|
|
46321
|
+
b. Affirmer offers the Work as-is and makes no representations or
|
|
46322
|
+
warranties of any kind concerning the Work, express, implied,
|
|
46323
|
+
statutory or otherwise, including without limitation warranties of
|
|
46324
|
+
title, merchantability, fitness for a particular purpose, non
|
|
46325
|
+
infringement, or the absence of latent or other defects, accuracy, or
|
|
46326
|
+
the present or absence of errors, whether or not discoverable, all to
|
|
46327
|
+
the greatest extent permissible under applicable law.
|
|
46328
|
+
c. Affirmer disclaims responsibility for clearing rights of other persons
|
|
46329
|
+
that may apply to the Work or any use thereof, including without
|
|
46330
|
+
limitation any person's Copyright and Related Rights in the Work.
|
|
46331
|
+
Further, Affirmer disclaims responsibility for obtaining any necessary
|
|
46332
|
+
consents, permissions or other rights required for any use of the
|
|
46333
|
+
Work.
|
|
46334
|
+
d. Affirmer understands and acknowledges that Creative Commons is not a
|
|
46335
|
+
party to this document and has no duty or obligation with respect to
|
|
46336
|
+
this CC0 or use of the Work.
|
|
46337
|
+
|
|
46338
|
+
---
|
|
46339
|
+
|
|
45286
46340
|
The following software may be included in this product: string-hash (1.1.3)
|
|
45287
46341
|
This software was created by The Dark Sky Company
|
|
45288
46342
|
This software contains the following license and notice below:
|
|
@@ -45504,6 +46558,348 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
45504
46558
|
|
|
45505
46559
|
---
|
|
45506
46560
|
|
|
46561
|
+
The following software may be included in this product: spdx-exceptions (2.5.0)
|
|
46562
|
+
This software contains the following license and notice below:
|
|
46563
|
+
|
|
46564
|
+
Copyright (c) The Linux Foundation
|
|
46565
|
+
|
|
46566
|
+
Creative Commons Legal Code
|
|
46567
|
+
|
|
46568
|
+
Attribution 3.0 Unported
|
|
46569
|
+
|
|
46570
|
+
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
|
|
46571
|
+
LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN
|
|
46572
|
+
ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
|
|
46573
|
+
INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
|
|
46574
|
+
REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR
|
|
46575
|
+
DAMAGES RESULTING FROM ITS USE.
|
|
46576
|
+
|
|
46577
|
+
License
|
|
46578
|
+
|
|
46579
|
+
THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE
|
|
46580
|
+
COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY
|
|
46581
|
+
COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS
|
|
46582
|
+
AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
|
|
46583
|
+
|
|
46584
|
+
BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE
|
|
46585
|
+
TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY
|
|
46586
|
+
BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS
|
|
46587
|
+
CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND
|
|
46588
|
+
CONDITIONS.
|
|
46589
|
+
|
|
46590
|
+
1. Definitions
|
|
46591
|
+
|
|
46592
|
+
a. "Adaptation" means a work based upon the Work, or upon the Work and
|
|
46593
|
+
other pre-existing works, such as a translation, adaptation,
|
|
46594
|
+
derivative work, arrangement of music or other alterations of a
|
|
46595
|
+
literary or artistic work, or phonogram or performance and includes
|
|
46596
|
+
cinematographic adaptations or any other form in which the Work may be
|
|
46597
|
+
recast, transformed, or adapted including in any form recognizably
|
|
46598
|
+
derived from the original, except that a work that constitutes a
|
|
46599
|
+
Collection will not be considered an Adaptation for the purpose of
|
|
46600
|
+
this License. For the avoidance of doubt, where the Work is a musical
|
|
46601
|
+
work, performance or phonogram, the synchronization of the Work in
|
|
46602
|
+
timed-relation with a moving image ("synching") will be considered an
|
|
46603
|
+
Adaptation for the purpose of this License.
|
|
46604
|
+
b. "Collection" means a collection of literary or artistic works, such as
|
|
46605
|
+
encyclopedias and anthologies, or performances, phonograms or
|
|
46606
|
+
broadcasts, or other works or subject matter other than works listed
|
|
46607
|
+
in Section 1(f) below, which, by reason of the selection and
|
|
46608
|
+
arrangement of their contents, constitute intellectual creations, in
|
|
46609
|
+
which the Work is included in its entirety in unmodified form along
|
|
46610
|
+
with one or more other contributions, each constituting separate and
|
|
46611
|
+
independent works in themselves, which together are assembled into a
|
|
46612
|
+
collective whole. A work that constitutes a Collection will not be
|
|
46613
|
+
considered an Adaptation (as defined above) for the purposes of this
|
|
46614
|
+
License.
|
|
46615
|
+
c. "Distribute" means to make available to the public the original and
|
|
46616
|
+
copies of the Work or Adaptation, as appropriate, through sale or
|
|
46617
|
+
other transfer of ownership.
|
|
46618
|
+
d. "Licensor" means the individual, individuals, entity or entities that
|
|
46619
|
+
offer(s) the Work under the terms of this License.
|
|
46620
|
+
e. "Original Author" means, in the case of a literary or artistic work,
|
|
46621
|
+
the individual, individuals, entity or entities who created the Work
|
|
46622
|
+
or if no individual or entity can be identified, the publisher; and in
|
|
46623
|
+
addition (i) in the case of a performance the actors, singers,
|
|
46624
|
+
musicians, dancers, and other persons who act, sing, deliver, declaim,
|
|
46625
|
+
play in, interpret or otherwise perform literary or artistic works or
|
|
46626
|
+
expressions of folklore; (ii) in the case of a phonogram the producer
|
|
46627
|
+
being the person or legal entity who first fixes the sounds of a
|
|
46628
|
+
performance or other sounds; and, (iii) in the case of broadcasts, the
|
|
46629
|
+
organization that transmits the broadcast.
|
|
46630
|
+
f. "Work" means the literary and/or artistic work offered under the terms
|
|
46631
|
+
of this License including without limitation any production in the
|
|
46632
|
+
literary, scientific and artistic domain, whatever may be the mode or
|
|
46633
|
+
form of its expression including digital form, such as a book,
|
|
46634
|
+
pamphlet and other writing; a lecture, address, sermon or other work
|
|
46635
|
+
of the same nature; a dramatic or dramatico-musical work; a
|
|
46636
|
+
choreographic work or entertainment in dumb show; a musical
|
|
46637
|
+
composition with or without words; a cinematographic work to which are
|
|
46638
|
+
assimilated works expressed by a process analogous to cinematography;
|
|
46639
|
+
a work of drawing, painting, architecture, sculpture, engraving or
|
|
46640
|
+
lithography; a photographic work to which are assimilated works
|
|
46641
|
+
expressed by a process analogous to photography; a work of applied
|
|
46642
|
+
art; an illustration, map, plan, sketch or three-dimensional work
|
|
46643
|
+
relative to geography, topography, architecture or science; a
|
|
46644
|
+
performance; a broadcast; a phonogram; a compilation of data to the
|
|
46645
|
+
extent it is protected as a copyrightable work; or a work performed by
|
|
46646
|
+
a variety or circus performer to the extent it is not otherwise
|
|
46647
|
+
considered a literary or artistic work.
|
|
46648
|
+
g. "You" means an individual or entity exercising rights under this
|
|
46649
|
+
License who has not previously violated the terms of this License with
|
|
46650
|
+
respect to the Work, or who has received express permission from the
|
|
46651
|
+
Licensor to exercise rights under this License despite a previous
|
|
46652
|
+
violation.
|
|
46653
|
+
h. "Publicly Perform" means to perform public recitations of the Work and
|
|
46654
|
+
to communicate to the public those public recitations, by any means or
|
|
46655
|
+
process, including by wire or wireless means or public digital
|
|
46656
|
+
performances; to make available to the public Works in such a way that
|
|
46657
|
+
members of the public may access these Works from a place and at a
|
|
46658
|
+
place individually chosen by them; to perform the Work to the public
|
|
46659
|
+
by any means or process and the communication to the public of the
|
|
46660
|
+
performances of the Work, including by public digital performance; to
|
|
46661
|
+
broadcast and rebroadcast the Work by any means including signs,
|
|
46662
|
+
sounds or images.
|
|
46663
|
+
i. "Reproduce" means to make copies of the Work by any means including
|
|
46664
|
+
without limitation by sound or visual recordings and the right of
|
|
46665
|
+
fixation and reproducing fixations of the Work, including storage of a
|
|
46666
|
+
protected performance or phonogram in digital form or other electronic
|
|
46667
|
+
medium.
|
|
46668
|
+
|
|
46669
|
+
2. Fair Dealing Rights. Nothing in this License is intended to reduce,
|
|
46670
|
+
limit, or restrict any uses free from copyright or rights arising from
|
|
46671
|
+
limitations or exceptions that are provided for in connection with the
|
|
46672
|
+
copyright protection under copyright law or other applicable laws.
|
|
46673
|
+
|
|
46674
|
+
3. License Grant. Subject to the terms and conditions of this License,
|
|
46675
|
+
Licensor hereby grants You a worldwide, royalty-free, non-exclusive,
|
|
46676
|
+
perpetual (for the duration of the applicable copyright) license to
|
|
46677
|
+
exercise the rights in the Work as stated below:
|
|
46678
|
+
|
|
46679
|
+
a. to Reproduce the Work, to incorporate the Work into one or more
|
|
46680
|
+
Collections, and to Reproduce the Work as incorporated in the
|
|
46681
|
+
Collections;
|
|
46682
|
+
b. to create and Reproduce Adaptations provided that any such Adaptation,
|
|
46683
|
+
including any translation in any medium, takes reasonable steps to
|
|
46684
|
+
clearly label, demarcate or otherwise identify that changes were made
|
|
46685
|
+
to the original Work. For example, a translation could be marked "The
|
|
46686
|
+
original work was translated from English to Spanish," or a
|
|
46687
|
+
modification could indicate "The original work has been modified.";
|
|
46688
|
+
c. to Distribute and Publicly Perform the Work including as incorporated
|
|
46689
|
+
in Collections; and,
|
|
46690
|
+
d. to Distribute and Publicly Perform Adaptations.
|
|
46691
|
+
e. For the avoidance of doubt:
|
|
46692
|
+
|
|
46693
|
+
i. Non-waivable Compulsory License Schemes. In those jurisdictions in
|
|
46694
|
+
which the right to collect royalties through any statutory or
|
|
46695
|
+
compulsory licensing scheme cannot be waived, the Licensor
|
|
46696
|
+
reserves the exclusive right to collect such royalties for any
|
|
46697
|
+
exercise by You of the rights granted under this License;
|
|
46698
|
+
ii. Waivable Compulsory License Schemes. In those jurisdictions in
|
|
46699
|
+
which the right to collect royalties through any statutory or
|
|
46700
|
+
compulsory licensing scheme can be waived, the Licensor waives the
|
|
46701
|
+
exclusive right to collect such royalties for any exercise by You
|
|
46702
|
+
of the rights granted under this License; and,
|
|
46703
|
+
iii. Voluntary License Schemes. The Licensor waives the right to
|
|
46704
|
+
collect royalties, whether individually or, in the event that the
|
|
46705
|
+
Licensor is a member of a collecting society that administers
|
|
46706
|
+
voluntary licensing schemes, via that society, from any exercise
|
|
46707
|
+
by You of the rights granted under this License.
|
|
46708
|
+
|
|
46709
|
+
The above rights may be exercised in all media and formats whether now
|
|
46710
|
+
known or hereafter devised. The above rights include the right to make
|
|
46711
|
+
such modifications as are technically necessary to exercise the rights in
|
|
46712
|
+
other media and formats. Subject to Section 8(f), all rights not expressly
|
|
46713
|
+
granted by Licensor are hereby reserved.
|
|
46714
|
+
|
|
46715
|
+
4. Restrictions. The license granted in Section 3 above is expressly made
|
|
46716
|
+
subject to and limited by the following restrictions:
|
|
46717
|
+
|
|
46718
|
+
a. You may Distribute or Publicly Perform the Work only under the terms
|
|
46719
|
+
of this License. You must include a copy of, or the Uniform Resource
|
|
46720
|
+
Identifier (URI) for, this License with every copy of the Work You
|
|
46721
|
+
Distribute or Publicly Perform. You may not offer or impose any terms
|
|
46722
|
+
on the Work that restrict the terms of this License or the ability of
|
|
46723
|
+
the recipient of the Work to exercise the rights granted to that
|
|
46724
|
+
recipient under the terms of the License. You may not sublicense the
|
|
46725
|
+
Work. You must keep intact all notices that refer to this License and
|
|
46726
|
+
to the disclaimer of warranties with every copy of the Work You
|
|
46727
|
+
Distribute or Publicly Perform. When You Distribute or Publicly
|
|
46728
|
+
Perform the Work, You may not impose any effective technological
|
|
46729
|
+
measures on the Work that restrict the ability of a recipient of the
|
|
46730
|
+
Work from You to exercise the rights granted to that recipient under
|
|
46731
|
+
the terms of the License. This Section 4(a) applies to the Work as
|
|
46732
|
+
incorporated in a Collection, but this does not require the Collection
|
|
46733
|
+
apart from the Work itself to be made subject to the terms of this
|
|
46734
|
+
License. If You create a Collection, upon notice from any Licensor You
|
|
46735
|
+
must, to the extent practicable, remove from the Collection any credit
|
|
46736
|
+
as required by Section 4(b), as requested. If You create an
|
|
46737
|
+
Adaptation, upon notice from any Licensor You must, to the extent
|
|
46738
|
+
practicable, remove from the Adaptation any credit as required by
|
|
46739
|
+
Section 4(b), as requested.
|
|
46740
|
+
b. If You Distribute, or Publicly Perform the Work or any Adaptations or
|
|
46741
|
+
Collections, You must, unless a request has been made pursuant to
|
|
46742
|
+
Section 4(a), keep intact all copyright notices for the Work and
|
|
46743
|
+
provide, reasonable to the medium or means You are utilizing: (i) the
|
|
46744
|
+
name of the Original Author (or pseudonym, if applicable) if supplied,
|
|
46745
|
+
and/or if the Original Author and/or Licensor designate another party
|
|
46746
|
+
or parties (e.g., a sponsor institute, publishing entity, journal) for
|
|
46747
|
+
attribution ("Attribution Parties") in Licensor's copyright notice,
|
|
46748
|
+
terms of service or by other reasonable means, the name of such party
|
|
46749
|
+
or parties; (ii) the title of the Work if supplied; (iii) to the
|
|
46750
|
+
extent reasonably practicable, the URI, if any, that Licensor
|
|
46751
|
+
specifies to be associated with the Work, unless such URI does not
|
|
46752
|
+
refer to the copyright notice or licensing information for the Work;
|
|
46753
|
+
and (iv) , consistent with Section 3(b), in the case of an Adaptation,
|
|
46754
|
+
a credit identifying the use of the Work in the Adaptation (e.g.,
|
|
46755
|
+
"French translation of the Work by Original Author," or "Screenplay
|
|
46756
|
+
based on original Work by Original Author"). The credit required by
|
|
46757
|
+
this Section 4 (b) may be implemented in any reasonable manner;
|
|
46758
|
+
provided, however, that in the case of a Adaptation or Collection, at
|
|
46759
|
+
a minimum such credit will appear, if a credit for all contributing
|
|
46760
|
+
authors of the Adaptation or Collection appears, then as part of these
|
|
46761
|
+
credits and in a manner at least as prominent as the credits for the
|
|
46762
|
+
other contributing authors. For the avoidance of doubt, You may only
|
|
46763
|
+
use the credit required by this Section for the purpose of attribution
|
|
46764
|
+
in the manner set out above and, by exercising Your rights under this
|
|
46765
|
+
License, You may not implicitly or explicitly assert or imply any
|
|
46766
|
+
connection with, sponsorship or endorsement by the Original Author,
|
|
46767
|
+
Licensor and/or Attribution Parties, as appropriate, of You or Your
|
|
46768
|
+
use of the Work, without the separate, express prior written
|
|
46769
|
+
permission of the Original Author, Licensor and/or Attribution
|
|
46770
|
+
Parties.
|
|
46771
|
+
c. Except as otherwise agreed in writing by the Licensor or as may be
|
|
46772
|
+
otherwise permitted by applicable law, if You Reproduce, Distribute or
|
|
46773
|
+
Publicly Perform the Work either by itself or as part of any
|
|
46774
|
+
Adaptations or Collections, You must not distort, mutilate, modify or
|
|
46775
|
+
take other derogatory action in relation to the Work which would be
|
|
46776
|
+
prejudicial to the Original Author's honor or reputation. Licensor
|
|
46777
|
+
agrees that in those jurisdictions (e.g. Japan), in which any exercise
|
|
46778
|
+
of the right granted in Section 3(b) of this License (the right to
|
|
46779
|
+
make Adaptations) would be deemed to be a distortion, mutilation,
|
|
46780
|
+
modification or other derogatory action prejudicial to the Original
|
|
46781
|
+
Author's honor and reputation, the Licensor will waive or not assert,
|
|
46782
|
+
as appropriate, this Section, to the fullest extent permitted by the
|
|
46783
|
+
applicable national law, to enable You to reasonably exercise Your
|
|
46784
|
+
right under Section 3(b) of this License (right to make Adaptations)
|
|
46785
|
+
but not otherwise.
|
|
46786
|
+
|
|
46787
|
+
5. Representations, Warranties and Disclaimer
|
|
46788
|
+
|
|
46789
|
+
UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR
|
|
46790
|
+
OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY
|
|
46791
|
+
KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,
|
|
46792
|
+
INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,
|
|
46793
|
+
FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF
|
|
46794
|
+
LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS,
|
|
46795
|
+
WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION
|
|
46796
|
+
OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.
|
|
46797
|
+
|
|
46798
|
+
6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE
|
|
46799
|
+
LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR
|
|
46800
|
+
ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES
|
|
46801
|
+
ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS
|
|
46802
|
+
BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
|
46803
|
+
|
|
46804
|
+
7. Termination
|
|
46805
|
+
|
|
46806
|
+
a. This License and the rights granted hereunder will terminate
|
|
46807
|
+
automatically upon any breach by You of the terms of this License.
|
|
46808
|
+
Individuals or entities who have received Adaptations or Collections
|
|
46809
|
+
from You under this License, however, will not have their licenses
|
|
46810
|
+
terminated provided such individuals or entities remain in full
|
|
46811
|
+
compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will
|
|
46812
|
+
survive any termination of this License.
|
|
46813
|
+
b. Subject to the above terms and conditions, the license granted here is
|
|
46814
|
+
perpetual (for the duration of the applicable copyright in the Work).
|
|
46815
|
+
Notwithstanding the above, Licensor reserves the right to release the
|
|
46816
|
+
Work under different license terms or to stop distributing the Work at
|
|
46817
|
+
any time; provided, however that any such election will not serve to
|
|
46818
|
+
withdraw this License (or any other license that has been, or is
|
|
46819
|
+
required to be, granted under the terms of this License), and this
|
|
46820
|
+
License will continue in full force and effect unless terminated as
|
|
46821
|
+
stated above.
|
|
46822
|
+
|
|
46823
|
+
8. Miscellaneous
|
|
46824
|
+
|
|
46825
|
+
a. Each time You Distribute or Publicly Perform the Work or a Collection,
|
|
46826
|
+
the Licensor offers to the recipient a license to the Work on the same
|
|
46827
|
+
terms and conditions as the license granted to You under this License.
|
|
46828
|
+
b. Each time You Distribute or Publicly Perform an Adaptation, Licensor
|
|
46829
|
+
offers to the recipient a license to the original Work on the same
|
|
46830
|
+
terms and conditions as the license granted to You under this License.
|
|
46831
|
+
c. If any provision of this License is invalid or unenforceable under
|
|
46832
|
+
applicable law, it shall not affect the validity or enforceability of
|
|
46833
|
+
the remainder of the terms of this License, and without further action
|
|
46834
|
+
by the parties to this agreement, such provision shall be reformed to
|
|
46835
|
+
the minimum extent necessary to make such provision valid and
|
|
46836
|
+
enforceable.
|
|
46837
|
+
d. No term or provision of this License shall be deemed waived and no
|
|
46838
|
+
breach consented to unless such waiver or consent shall be in writing
|
|
46839
|
+
and signed by the party to be charged with such waiver or consent.
|
|
46840
|
+
e. This License constitutes the entire agreement between the parties with
|
|
46841
|
+
respect to the Work licensed here. There are no understandings,
|
|
46842
|
+
agreements or representations with respect to the Work not specified
|
|
46843
|
+
here. Licensor shall not be bound by any additional provisions that
|
|
46844
|
+
may appear in any communication from You. This License may not be
|
|
46845
|
+
modified without the mutual written agreement of the Licensor and You.
|
|
46846
|
+
f. The rights granted under, and the subject matter referenced, in this
|
|
46847
|
+
License were drafted utilizing the terminology of the Berne Convention
|
|
46848
|
+
for the Protection of Literary and Artistic Works (as amended on
|
|
46849
|
+
September 28, 1979), the Rome Convention of 1961, the WIPO Copyright
|
|
46850
|
+
Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996
|
|
46851
|
+
and the Universal Copyright Convention (as revised on July 24, 1971).
|
|
46852
|
+
These rights and subject matter take effect in the relevant
|
|
46853
|
+
jurisdiction in which the License terms are sought to be enforced
|
|
46854
|
+
according to the corresponding provisions of the implementation of
|
|
46855
|
+
those treaty provisions in the applicable national law. If the
|
|
46856
|
+
standard suite of rights granted under applicable copyright law
|
|
46857
|
+
includes additional rights not granted under this License, such
|
|
46858
|
+
additional rights are deemed to be included in the License; this
|
|
46859
|
+
License is not intended to restrict the license of any rights under
|
|
46860
|
+
applicable law.
|
|
46861
|
+
|
|
46862
|
+
|
|
46863
|
+
Creative Commons Notice
|
|
46864
|
+
|
|
46865
|
+
Creative Commons is not a party to this License, and makes no warranty
|
|
46866
|
+
whatsoever in connection with the Work. Creative Commons will not be
|
|
46867
|
+
liable to You or any party on any legal theory for any damages
|
|
46868
|
+
whatsoever, including without limitation any general, special,
|
|
46869
|
+
incidental or consequential damages arising in connection to this
|
|
46870
|
+
license. Notwithstanding the foregoing two (2) sentences, if Creative
|
|
46871
|
+
Commons has expressly identified itself as the Licensor hereunder, it
|
|
46872
|
+
shall have all rights and obligations of Licensor.
|
|
46873
|
+
|
|
46874
|
+
Except for the limited purpose of indicating to the public that the
|
|
46875
|
+
Work is licensed under the CCPL, Creative Commons does not authorize
|
|
46876
|
+
the use by either party of the trademark "Creative Commons" or any
|
|
46877
|
+
related trademark or logo of Creative Commons without the prior
|
|
46878
|
+
written consent of Creative Commons. Any permitted use will be in
|
|
46879
|
+
compliance with Creative Commons' then-current trademark usage
|
|
46880
|
+
guidelines, as may be published on its website or otherwise made
|
|
46881
|
+
available upon request from time to time. For the avoidance of doubt,
|
|
46882
|
+
this trademark restriction does not form part of this License.
|
|
46883
|
+
|
|
46884
|
+
Creative Commons may be contacted at https://creativecommons.org/.
|
|
46885
|
+
|
|
46886
|
+
---
|
|
46887
|
+
|
|
46888
|
+
The following software may be included in this product: spdx-ranges (2.1.1)
|
|
46889
|
+
This software contains the following license and notice below:
|
|
46890
|
+
|
|
46891
|
+
The MIT License
|
|
46892
|
+
|
|
46893
|
+
Copyright (c) 2015 Kyle E. Mitchell
|
|
46894
|
+
|
|
46895
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
46896
|
+
|
|
46897
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
46898
|
+
|
|
46899
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
46900
|
+
|
|
46901
|
+
---
|
|
46902
|
+
|
|
45507
46903
|
The following software may be included in this product: truncate-utf8-bytes (1.0.2)
|
|
45508
46904
|
This software was created by Carl Xiong
|
|
45509
46905
|
This software contains the following license and notice below:
|