@aws/nx-plugin 1.0.0-rc.4 → 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 +1820 -476
- package/executors.json +9 -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/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/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/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/{docker-pull.ts.template → pull-image.ts.template} +1 -1
- 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/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
|
@@ -9004,6 +9004,33 @@ OTHER DEALINGS IN THE SOFTWARE.
|
|
|
9004
9004
|
|
|
9005
9005
|
---
|
|
9006
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
|
+
|
|
9007
9034
|
The following software may be included in this product: array-flatten (1.1.1)
|
|
9008
9035
|
This software contains the following license and notice below:
|
|
9009
9036
|
|
|
@@ -16485,33 +16512,6 @@ SOFTWARE.
|
|
|
16485
16512
|
|
|
16486
16513
|
---
|
|
16487
16514
|
|
|
16488
|
-
The following software may be included in this product: jiti (2.5.1)
|
|
16489
|
-
This software contains the following license and notice below:
|
|
16490
|
-
|
|
16491
|
-
MIT License
|
|
16492
|
-
|
|
16493
|
-
Copyright (c) Pooya Parsa <pooya@pi0.io>
|
|
16494
|
-
|
|
16495
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
16496
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
16497
|
-
in the Software without restriction, including without limitation the rights
|
|
16498
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
16499
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
16500
|
-
furnished to do so, subject to the following conditions:
|
|
16501
|
-
|
|
16502
|
-
The above copyright notice and this permission notice shall be included in all
|
|
16503
|
-
copies or substantial portions of the Software.
|
|
16504
|
-
|
|
16505
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16506
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16507
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16508
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
16509
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
16510
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
16511
|
-
SOFTWARE.
|
|
16512
|
-
|
|
16513
|
-
---
|
|
16514
|
-
|
|
16515
16515
|
The following software may be included in this product: jiti (2.6.1)
|
|
16516
16516
|
This software contains the following license and notice below:
|
|
16517
16517
|
|
|
@@ -16859,6 +16859,37 @@ distributed under the terms of the MIT license above.
|
|
|
16859
16859
|
|
|
16860
16860
|
---
|
|
16861
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
|
+
|
|
16862
16893
|
The following software may be included in this product: json-schema-traverse (0.4.1)
|
|
16863
16894
|
This software contains the following license and notice below:
|
|
16864
16895
|
|
|
@@ -17565,7 +17596,7 @@ terms above.
|
|
|
17565
17596
|
|
|
17566
17597
|
---
|
|
17567
17598
|
|
|
17568
|
-
The following software may be included in this product: lodash.
|
|
17599
|
+
The following software may be included in this product: lodash.clonedeep (4.5.0)
|
|
17569
17600
|
This software contains the following license and notice below:
|
|
17570
17601
|
|
|
17571
17602
|
Copyright jQuery Foundation and other contributors <https://jquery.org/>
|
|
@@ -17618,60 +17649,7 @@ terms above.
|
|
|
17618
17649
|
|
|
17619
17650
|
---
|
|
17620
17651
|
|
|
17621
|
-
The following software may be included in this product: lodash.
|
|
17622
|
-
This software contains the following license and notice below:
|
|
17623
|
-
|
|
17624
|
-
Copyright jQuery Foundation and other contributors <https://jquery.org/>
|
|
17625
|
-
|
|
17626
|
-
Based on Underscore.js, copyright Jeremy Ashkenas,
|
|
17627
|
-
DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
|
|
17628
|
-
|
|
17629
|
-
This software consists of voluntary contributions made by many
|
|
17630
|
-
individuals. For exact contribution history, see the revision history
|
|
17631
|
-
available at https://github.com/lodash/lodash
|
|
17632
|
-
|
|
17633
|
-
The following license applies to all parts of this software except as
|
|
17634
|
-
documented below:
|
|
17635
|
-
|
|
17636
|
-
====
|
|
17637
|
-
|
|
17638
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
17639
|
-
a copy of this software and associated documentation files (the
|
|
17640
|
-
"Software"), to deal in the Software without restriction, including
|
|
17641
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
17642
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
17643
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
17644
|
-
the following conditions:
|
|
17645
|
-
|
|
17646
|
-
The above copyright notice and this permission notice shall be
|
|
17647
|
-
included in all copies or substantial portions of the Software.
|
|
17648
|
-
|
|
17649
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17650
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
17651
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17652
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
17653
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
17654
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
17655
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
17656
|
-
|
|
17657
|
-
====
|
|
17658
|
-
|
|
17659
|
-
Copyright and related rights for sample code are waived via CC0. Sample
|
|
17660
|
-
code is defined as all source code displayed within the prose of the
|
|
17661
|
-
documentation.
|
|
17662
|
-
|
|
17663
|
-
CC0: http://creativecommons.org/publicdomain/zero/1.0/
|
|
17664
|
-
|
|
17665
|
-
====
|
|
17666
|
-
|
|
17667
|
-
Files located in the node_modules and vendor directories are externally
|
|
17668
|
-
maintained libraries used by this software which have their own
|
|
17669
|
-
licenses; we recommend you read them, as their terms may differ from the
|
|
17670
|
-
terms above.
|
|
17671
|
-
|
|
17672
|
-
---
|
|
17673
|
-
|
|
17674
|
-
The following software may be included in this product: lodash.deburr (4.1.0)
|
|
17652
|
+
The following software may be included in this product: lodash.clonedeepwith (4.5.0)
|
|
17675
17653
|
This software contains the following license and notice below:
|
|
17676
17654
|
|
|
17677
17655
|
Copyright jQuery Foundation and other contributors <https://jquery.org/>
|
|
@@ -17724,7 +17702,7 @@ terms above.
|
|
|
17724
17702
|
|
|
17725
17703
|
---
|
|
17726
17704
|
|
|
17727
|
-
The following software may be included in this product: lodash.
|
|
17705
|
+
The following software may be included in this product: lodash.debounce (4.0.8)
|
|
17728
17706
|
This software contains the following license and notice below:
|
|
17729
17707
|
|
|
17730
17708
|
Copyright jQuery Foundation and other contributors <https://jquery.org/>
|
|
@@ -17777,35 +17755,7 @@ terms above.
|
|
|
17777
17755
|
|
|
17778
17756
|
---
|
|
17779
17757
|
|
|
17780
|
-
The following software may be included in this product: lodash.
|
|
17781
|
-
This software contains the following license and notice below:
|
|
17782
|
-
|
|
17783
|
-
Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
|
|
17784
|
-
Based on Underscore.js, copyright 2009-2016 Jeremy Ashkenas,
|
|
17785
|
-
DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
|
|
17786
|
-
|
|
17787
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
17788
|
-
a copy of this software and associated documentation files (the
|
|
17789
|
-
"Software"), to deal in the Software without restriction, including
|
|
17790
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
17791
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
17792
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
17793
|
-
the following conditions:
|
|
17794
|
-
|
|
17795
|
-
The above copyright notice and this permission notice shall be
|
|
17796
|
-
included in all copies or substantial portions of the Software.
|
|
17797
|
-
|
|
17798
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17799
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
17800
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17801
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
17802
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
17803
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
17804
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
17805
|
-
|
|
17806
|
-
---
|
|
17807
|
-
|
|
17808
|
-
The following software may be included in this product: lodash.isinteger (4.0.4)
|
|
17758
|
+
The following software may be included in this product: lodash.deburr (4.1.0)
|
|
17809
17759
|
This software contains the following license and notice below:
|
|
17810
17760
|
|
|
17811
17761
|
Copyright jQuery Foundation and other contributors <https://jquery.org/>
|
|
@@ -17858,35 +17808,7 @@ terms above.
|
|
|
17858
17808
|
|
|
17859
17809
|
---
|
|
17860
17810
|
|
|
17861
|
-
The following software may be included in this product: lodash.
|
|
17862
|
-
This software contains the following license and notice below:
|
|
17863
|
-
|
|
17864
|
-
Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
|
|
17865
|
-
Based on Underscore.js, copyright 2009-2016 Jeremy Ashkenas,
|
|
17866
|
-
DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
|
|
17867
|
-
|
|
17868
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
17869
|
-
a copy of this software and associated documentation files (the
|
|
17870
|
-
"Software"), to deal in the Software without restriction, including
|
|
17871
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
17872
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
17873
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
17874
|
-
the following conditions:
|
|
17875
|
-
|
|
17876
|
-
The above copyright notice and this permission notice shall be
|
|
17877
|
-
included in all copies or substantial portions of the Software.
|
|
17878
|
-
|
|
17879
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17880
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
17881
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17882
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
17883
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
17884
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
17885
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
17886
|
-
|
|
17887
|
-
---
|
|
17888
|
-
|
|
17889
|
-
The following software may be included in this product: lodash.isplainobject (4.0.6)
|
|
17811
|
+
The following software may be included in this product: lodash.includes (4.3.0)
|
|
17890
17812
|
This software contains the following license and notice below:
|
|
17891
17813
|
|
|
17892
17814
|
Copyright jQuery Foundation and other contributors <https://jquery.org/>
|
|
@@ -17939,7 +17861,7 @@ terms above.
|
|
|
17939
17861
|
|
|
17940
17862
|
---
|
|
17941
17863
|
|
|
17942
|
-
The following software may be included in this product: lodash.
|
|
17864
|
+
The following software may be included in this product: lodash.isboolean (3.0.3)
|
|
17943
17865
|
This software contains the following license and notice below:
|
|
17944
17866
|
|
|
17945
17867
|
Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
|
|
@@ -17967,60 +17889,222 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
17967
17889
|
|
|
17968
17890
|
---
|
|
17969
17891
|
|
|
17970
|
-
The following software may be included in this product: lodash.
|
|
17971
|
-
This software contains the following license and notice below:
|
|
17972
|
-
|
|
17973
|
-
Copyright
|
|
17974
|
-
|
|
17975
|
-
Based on Underscore.js, copyright Jeremy Ashkenas,
|
|
17976
|
-
DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
|
|
17977
|
-
|
|
17978
|
-
This software consists of voluntary contributions made by many
|
|
17979
|
-
individuals. For exact contribution history, see the revision history
|
|
17980
|
-
available at https://github.com/lodash/lodash
|
|
17981
|
-
|
|
17982
|
-
The following license applies to all parts of this software except as
|
|
17983
|
-
documented below:
|
|
17984
|
-
|
|
17985
|
-
====
|
|
17986
|
-
|
|
17987
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
17988
|
-
a copy of this software and associated documentation files (the
|
|
17989
|
-
"Software"), to deal in the Software without restriction, including
|
|
17990
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
17991
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
17992
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
17993
|
-
the following conditions:
|
|
17994
|
-
|
|
17995
|
-
The above copyright notice and this permission notice shall be
|
|
17996
|
-
included in all copies or substantial portions of the Software.
|
|
17997
|
-
|
|
17998
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17999
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18000
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
18001
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18002
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
18003
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
18004
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
18005
|
-
|
|
18006
|
-
====
|
|
18007
|
-
|
|
18008
|
-
Copyright and related rights for sample code are waived via CC0. Sample
|
|
18009
|
-
code is defined as all source code displayed within the prose of the
|
|
18010
|
-
documentation.
|
|
18011
|
-
|
|
18012
|
-
CC0: http://creativecommons.org/publicdomain/zero/1.0/
|
|
18013
|
-
|
|
18014
|
-
====
|
|
18015
|
-
|
|
18016
|
-
Files located in the node_modules and vendor directories are externally
|
|
18017
|
-
maintained libraries used by this software which have their own
|
|
18018
|
-
licenses; we recommend you read them, as their terms may differ from the
|
|
18019
|
-
terms above.
|
|
18020
|
-
|
|
18021
|
-
---
|
|
18022
|
-
|
|
18023
|
-
The following software may be included in this product: lodash.
|
|
17892
|
+
The following software may be included in this product: lodash.isinteger (4.0.4)
|
|
17893
|
+
This software contains the following license and notice below:
|
|
17894
|
+
|
|
17895
|
+
Copyright jQuery Foundation and other contributors <https://jquery.org/>
|
|
17896
|
+
|
|
17897
|
+
Based on Underscore.js, copyright Jeremy Ashkenas,
|
|
17898
|
+
DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
|
|
17899
|
+
|
|
17900
|
+
This software consists of voluntary contributions made by many
|
|
17901
|
+
individuals. For exact contribution history, see the revision history
|
|
17902
|
+
available at https://github.com/lodash/lodash
|
|
17903
|
+
|
|
17904
|
+
The following license applies to all parts of this software except as
|
|
17905
|
+
documented below:
|
|
17906
|
+
|
|
17907
|
+
====
|
|
17908
|
+
|
|
17909
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
17910
|
+
a copy of this software and associated documentation files (the
|
|
17911
|
+
"Software"), to deal in the Software without restriction, including
|
|
17912
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
17913
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
17914
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
17915
|
+
the following conditions:
|
|
17916
|
+
|
|
17917
|
+
The above copyright notice and this permission notice shall be
|
|
17918
|
+
included in all copies or substantial portions of the Software.
|
|
17919
|
+
|
|
17920
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17921
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
17922
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17923
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
17924
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
17925
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
17926
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
17927
|
+
|
|
17928
|
+
====
|
|
17929
|
+
|
|
17930
|
+
Copyright and related rights for sample code are waived via CC0. Sample
|
|
17931
|
+
code is defined as all source code displayed within the prose of the
|
|
17932
|
+
documentation.
|
|
17933
|
+
|
|
17934
|
+
CC0: http://creativecommons.org/publicdomain/zero/1.0/
|
|
17935
|
+
|
|
17936
|
+
====
|
|
17937
|
+
|
|
17938
|
+
Files located in the node_modules and vendor directories are externally
|
|
17939
|
+
maintained libraries used by this software which have their own
|
|
17940
|
+
licenses; we recommend you read them, as their terms may differ from the
|
|
17941
|
+
terms above.
|
|
17942
|
+
|
|
17943
|
+
---
|
|
17944
|
+
|
|
17945
|
+
The following software may be included in this product: lodash.isnumber (3.0.3)
|
|
17946
|
+
This software contains the following license and notice below:
|
|
17947
|
+
|
|
17948
|
+
Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
|
|
17949
|
+
Based on Underscore.js, copyright 2009-2016 Jeremy Ashkenas,
|
|
17950
|
+
DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
|
|
17951
|
+
|
|
17952
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
17953
|
+
a copy of this software and associated documentation files (the
|
|
17954
|
+
"Software"), to deal in the Software without restriction, including
|
|
17955
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
17956
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
17957
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
17958
|
+
the following conditions:
|
|
17959
|
+
|
|
17960
|
+
The above copyright notice and this permission notice shall be
|
|
17961
|
+
included in all copies or substantial portions of the Software.
|
|
17962
|
+
|
|
17963
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17964
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
17965
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17966
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
17967
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
17968
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
17969
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
17970
|
+
|
|
17971
|
+
---
|
|
17972
|
+
|
|
17973
|
+
The following software may be included in this product: lodash.isplainobject (4.0.6)
|
|
17974
|
+
This software contains the following license and notice below:
|
|
17975
|
+
|
|
17976
|
+
Copyright jQuery Foundation and other contributors <https://jquery.org/>
|
|
17977
|
+
|
|
17978
|
+
Based on Underscore.js, copyright Jeremy Ashkenas,
|
|
17979
|
+
DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
|
|
17980
|
+
|
|
17981
|
+
This software consists of voluntary contributions made by many
|
|
17982
|
+
individuals. For exact contribution history, see the revision history
|
|
17983
|
+
available at https://github.com/lodash/lodash
|
|
17984
|
+
|
|
17985
|
+
The following license applies to all parts of this software except as
|
|
17986
|
+
documented below:
|
|
17987
|
+
|
|
17988
|
+
====
|
|
17989
|
+
|
|
17990
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
17991
|
+
a copy of this software and associated documentation files (the
|
|
17992
|
+
"Software"), to deal in the Software without restriction, including
|
|
17993
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
17994
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
17995
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
17996
|
+
the following conditions:
|
|
17997
|
+
|
|
17998
|
+
The above copyright notice and this permission notice shall be
|
|
17999
|
+
included in all copies or substantial portions of the Software.
|
|
18000
|
+
|
|
18001
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
18002
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18003
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
18004
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18005
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
18006
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
18007
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
18008
|
+
|
|
18009
|
+
====
|
|
18010
|
+
|
|
18011
|
+
Copyright and related rights for sample code are waived via CC0. Sample
|
|
18012
|
+
code is defined as all source code displayed within the prose of the
|
|
18013
|
+
documentation.
|
|
18014
|
+
|
|
18015
|
+
CC0: http://creativecommons.org/publicdomain/zero/1.0/
|
|
18016
|
+
|
|
18017
|
+
====
|
|
18018
|
+
|
|
18019
|
+
Files located in the node_modules and vendor directories are externally
|
|
18020
|
+
maintained libraries used by this software which have their own
|
|
18021
|
+
licenses; we recommend you read them, as their terms may differ from the
|
|
18022
|
+
terms above.
|
|
18023
|
+
|
|
18024
|
+
---
|
|
18025
|
+
|
|
18026
|
+
The following software may be included in this product: lodash.isstring (4.0.1)
|
|
18027
|
+
This software contains the following license and notice below:
|
|
18028
|
+
|
|
18029
|
+
Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
|
|
18030
|
+
Based on Underscore.js, copyright 2009-2016 Jeremy Ashkenas,
|
|
18031
|
+
DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
|
|
18032
|
+
|
|
18033
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
18034
|
+
a copy of this software and associated documentation files (the
|
|
18035
|
+
"Software"), to deal in the Software without restriction, including
|
|
18036
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
18037
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
18038
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
18039
|
+
the following conditions:
|
|
18040
|
+
|
|
18041
|
+
The above copyright notice and this permission notice shall be
|
|
18042
|
+
included in all copies or substantial portions of the Software.
|
|
18043
|
+
|
|
18044
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
18045
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18046
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
18047
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18048
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
18049
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
18050
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
18051
|
+
|
|
18052
|
+
---
|
|
18053
|
+
|
|
18054
|
+
The following software may be included in this product: lodash.merge (4.6.2)
|
|
18055
|
+
This software contains the following license and notice below:
|
|
18056
|
+
|
|
18057
|
+
Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
|
18058
|
+
|
|
18059
|
+
Based on Underscore.js, copyright Jeremy Ashkenas,
|
|
18060
|
+
DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
|
|
18061
|
+
|
|
18062
|
+
This software consists of voluntary contributions made by many
|
|
18063
|
+
individuals. For exact contribution history, see the revision history
|
|
18064
|
+
available at https://github.com/lodash/lodash
|
|
18065
|
+
|
|
18066
|
+
The following license applies to all parts of this software except as
|
|
18067
|
+
documented below:
|
|
18068
|
+
|
|
18069
|
+
====
|
|
18070
|
+
|
|
18071
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
18072
|
+
a copy of this software and associated documentation files (the
|
|
18073
|
+
"Software"), to deal in the Software without restriction, including
|
|
18074
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
18075
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
18076
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
18077
|
+
the following conditions:
|
|
18078
|
+
|
|
18079
|
+
The above copyright notice and this permission notice shall be
|
|
18080
|
+
included in all copies or substantial portions of the Software.
|
|
18081
|
+
|
|
18082
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
18083
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18084
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
18085
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18086
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
18087
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
18088
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
18089
|
+
|
|
18090
|
+
====
|
|
18091
|
+
|
|
18092
|
+
Copyright and related rights for sample code are waived via CC0. Sample
|
|
18093
|
+
code is defined as all source code displayed within the prose of the
|
|
18094
|
+
documentation.
|
|
18095
|
+
|
|
18096
|
+
CC0: http://creativecommons.org/publicdomain/zero/1.0/
|
|
18097
|
+
|
|
18098
|
+
====
|
|
18099
|
+
|
|
18100
|
+
Files located in the node_modules and vendor directories are externally
|
|
18101
|
+
maintained libraries used by this software which have their own
|
|
18102
|
+
licenses; we recommend you read them, as their terms may differ from the
|
|
18103
|
+
terms above.
|
|
18104
|
+
|
|
18105
|
+
---
|
|
18106
|
+
|
|
18107
|
+
The following software may be included in this product: lodash.once (4.1.1)
|
|
18024
18108
|
This software contains the following license and notice below:
|
|
18025
18109
|
|
|
18026
18110
|
Copyright jQuery Foundation and other contributors <https://jquery.org/>
|
|
@@ -25079,6 +25163,103 @@ SOFTWARE.
|
|
|
25079
25163
|
|
|
25080
25164
|
---
|
|
25081
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
|
+
|
|
25082
25263
|
The following software may be included in this product: sshpk (1.18.0)
|
|
25083
25264
|
This software contains the following license and notice below:
|
|
25084
25265
|
|
|
@@ -26310,6 +26491,33 @@ SOFTWARE.
|
|
|
26310
26491
|
|
|
26311
26492
|
---
|
|
26312
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
|
+
|
|
26313
26521
|
The following software may be included in this product: trough (2.2.0)
|
|
26314
26522
|
This software contains the following license and notice below:
|
|
26315
26523
|
|
|
@@ -38016,7 +38224,214 @@ END OF TERMS AND CONDITIONS
|
|
|
38016
38224
|
APPENDIX: How to apply the Apache License to your work.
|
|
38017
38225
|
|
|
38018
38226
|
To apply the Apache License to your work, attach the following
|
|
38019
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
38227
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
38228
|
+
replaced with your own identifying information. (Don't include
|
|
38229
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
38230
|
+
comment syntax for the file format. We also recommend that a
|
|
38231
|
+
file or class name and description of purpose be included on the
|
|
38232
|
+
same "printed page" as the copyright notice for easier
|
|
38233
|
+
identification within third-party archives.
|
|
38234
|
+
|
|
38235
|
+
Copyright [yyyy] [name of copyright owner]
|
|
38236
|
+
|
|
38237
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
38238
|
+
you may not use this file except in compliance with the License.
|
|
38239
|
+
You may obtain a copy of the License at
|
|
38240
|
+
|
|
38241
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
38242
|
+
|
|
38243
|
+
Unless required by applicable law or agreed to in writing, software
|
|
38244
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
38245
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
38246
|
+
See the License for the specific language governing permissions and
|
|
38247
|
+
limitations under the License.
|
|
38248
|
+
|
|
38249
|
+
---
|
|
38250
|
+
|
|
38251
|
+
The following software may be included in this product: eslint-visitor-keys (3.4.3)
|
|
38252
|
+
This software contains the following license and notice below:
|
|
38253
|
+
|
|
38254
|
+
Apache License
|
|
38255
|
+
Version 2.0, January 2004
|
|
38256
|
+
http://www.apache.org/licenses/
|
|
38257
|
+
|
|
38258
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
38259
|
+
|
|
38260
|
+
1. Definitions.
|
|
38261
|
+
|
|
38262
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
38263
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
38264
|
+
|
|
38265
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
38266
|
+
the copyright owner that is granting the License.
|
|
38267
|
+
|
|
38268
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
38269
|
+
other entities that control, are controlled by, or are under common
|
|
38270
|
+
control with that entity. For the purposes of this definition,
|
|
38271
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
38272
|
+
direction or management of such entity, whether by contract or
|
|
38273
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
38274
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
38275
|
+
|
|
38276
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
38277
|
+
exercising permissions granted by this License.
|
|
38278
|
+
|
|
38279
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
38280
|
+
including but not limited to software source code, documentation
|
|
38281
|
+
source, and configuration files.
|
|
38282
|
+
|
|
38283
|
+
"Object" form shall mean any form resulting from mechanical
|
|
38284
|
+
transformation or translation of a Source form, including but
|
|
38285
|
+
not limited to compiled object code, generated documentation,
|
|
38286
|
+
and conversions to other media types.
|
|
38287
|
+
|
|
38288
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
38289
|
+
Object form, made available under the License, as indicated by a
|
|
38290
|
+
copyright notice that is included in or attached to the work
|
|
38291
|
+
(an example is provided in the Appendix below).
|
|
38292
|
+
|
|
38293
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
38294
|
+
form, that is based on (or derived from) the Work and for which the
|
|
38295
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
38296
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
38297
|
+
of this License, Derivative Works shall not include works that remain
|
|
38298
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
38299
|
+
the Work and Derivative Works thereof.
|
|
38300
|
+
|
|
38301
|
+
"Contribution" shall mean any work of authorship, including
|
|
38302
|
+
the original version of the Work and any modifications or additions
|
|
38303
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
38304
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
38305
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
38306
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
38307
|
+
means any form of electronic, verbal, or written communication sent
|
|
38308
|
+
to the Licensor or its representatives, including but not limited to
|
|
38309
|
+
communication on electronic mailing lists, source code control systems,
|
|
38310
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
38311
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
38312
|
+
excluding communication that is conspicuously marked or otherwise
|
|
38313
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
38314
|
+
|
|
38315
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
38316
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
38317
|
+
subsequently incorporated within the Work.
|
|
38318
|
+
|
|
38319
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
38320
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
38321
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
38322
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
38323
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
38324
|
+
Work and such Derivative Works in Source or Object form.
|
|
38325
|
+
|
|
38326
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
38327
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
38328
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
38329
|
+
(except as stated in this section) patent license to make, have made,
|
|
38330
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
38331
|
+
where such license applies only to those patent claims licensable
|
|
38332
|
+
by such Contributor that are necessarily infringed by their
|
|
38333
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
38334
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
38335
|
+
institute patent litigation against any entity (including a
|
|
38336
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
38337
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
38338
|
+
or contributory patent infringement, then any patent licenses
|
|
38339
|
+
granted to You under this License for that Work shall terminate
|
|
38340
|
+
as of the date such litigation is filed.
|
|
38341
|
+
|
|
38342
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
38343
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
38344
|
+
modifications, and in Source or Object form, provided that You
|
|
38345
|
+
meet the following conditions:
|
|
38346
|
+
|
|
38347
|
+
(a) You must give any other recipients of the Work or
|
|
38348
|
+
Derivative Works a copy of this License; and
|
|
38349
|
+
|
|
38350
|
+
(b) You must cause any modified files to carry prominent notices
|
|
38351
|
+
stating that You changed the files; and
|
|
38352
|
+
|
|
38353
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
38354
|
+
that You distribute, all copyright, patent, trademark, and
|
|
38355
|
+
attribution notices from the Source form of the Work,
|
|
38356
|
+
excluding those notices that do not pertain to any part of
|
|
38357
|
+
the Derivative Works; and
|
|
38358
|
+
|
|
38359
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
38360
|
+
distribution, then any Derivative Works that You distribute must
|
|
38361
|
+
include a readable copy of the attribution notices contained
|
|
38362
|
+
within such NOTICE file, excluding those notices that do not
|
|
38363
|
+
pertain to any part of the Derivative Works, in at least one
|
|
38364
|
+
of the following places: within a NOTICE text file distributed
|
|
38365
|
+
as part of the Derivative Works; within the Source form or
|
|
38366
|
+
documentation, if provided along with the Derivative Works; or,
|
|
38367
|
+
within a display generated by the Derivative Works, if and
|
|
38368
|
+
wherever such third-party notices normally appear. The contents
|
|
38369
|
+
of the NOTICE file are for informational purposes only and
|
|
38370
|
+
do not modify the License. You may add Your own attribution
|
|
38371
|
+
notices within Derivative Works that You distribute, alongside
|
|
38372
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
38373
|
+
that such additional attribution notices cannot be construed
|
|
38374
|
+
as modifying the License.
|
|
38375
|
+
|
|
38376
|
+
You may add Your own copyright statement to Your modifications and
|
|
38377
|
+
may provide additional or different license terms and conditions
|
|
38378
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
38379
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
38380
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
38381
|
+
the conditions stated in this License.
|
|
38382
|
+
|
|
38383
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
38384
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
38385
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
38386
|
+
this License, without any additional terms or conditions.
|
|
38387
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
38388
|
+
the terms of any separate license agreement you may have executed
|
|
38389
|
+
with Licensor regarding such Contributions.
|
|
38390
|
+
|
|
38391
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
38392
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
38393
|
+
except as required for reasonable and customary use in describing the
|
|
38394
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
38395
|
+
|
|
38396
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
38397
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
38398
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
38399
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
38400
|
+
implied, including, without limitation, any warranties or conditions
|
|
38401
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
38402
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
38403
|
+
appropriateness of using or redistributing the Work and assume any
|
|
38404
|
+
risks associated with Your exercise of permissions under this License.
|
|
38405
|
+
|
|
38406
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
38407
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
38408
|
+
unless required by applicable law (such as deliberate and grossly
|
|
38409
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
38410
|
+
liable to You for damages, including any direct, indirect, special,
|
|
38411
|
+
incidental, or consequential damages of any character arising as a
|
|
38412
|
+
result of this License or out of the use or inability to use the
|
|
38413
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
38414
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
38415
|
+
other commercial damages or losses), even if such Contributor
|
|
38416
|
+
has been advised of the possibility of such damages.
|
|
38417
|
+
|
|
38418
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
38419
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
38420
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
38421
|
+
or other liability obligations and/or rights consistent with this
|
|
38422
|
+
License. However, in accepting such obligations, You may act only
|
|
38423
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
38424
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
38425
|
+
defend, and hold each Contributor harmless for any liability
|
|
38426
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
38427
|
+
of your accepting any such warranty or additional liability.
|
|
38428
|
+
|
|
38429
|
+
END OF TERMS AND CONDITIONS
|
|
38430
|
+
|
|
38431
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
38432
|
+
|
|
38433
|
+
To apply the Apache License to your work, attach the following
|
|
38434
|
+
boilerplate notice, with the fields enclosed by brackets "{}"
|
|
38020
38435
|
replaced with your own identifying information. (Don't include
|
|
38021
38436
|
the brackets!) The text should be enclosed in the appropriate
|
|
38022
38437
|
comment syntax for the file format. We also recommend that a
|
|
@@ -38024,7 +38439,7 @@ APPENDIX: How to apply the Apache License to your work.
|
|
|
38024
38439
|
same "printed page" as the copyright notice for easier
|
|
38025
38440
|
identification within third-party archives.
|
|
38026
38441
|
|
|
38027
|
-
Copyright
|
|
38442
|
+
Copyright contributors
|
|
38028
38443
|
|
|
38029
38444
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
38030
38445
|
you may not use this file except in compliance with the License.
|
|
@@ -38040,7 +38455,7 @@ limitations under the License.
|
|
|
38040
38455
|
|
|
38041
38456
|
---
|
|
38042
38457
|
|
|
38043
|
-
The following software may be included in this product: eslint-visitor-keys (
|
|
38458
|
+
The following software may be included in this product: eslint-visitor-keys (4.2.1)
|
|
38044
38459
|
This software contains the following license and notice below:
|
|
38045
38460
|
|
|
38046
38461
|
Apache License
|
|
@@ -38247,7 +38662,265 @@ limitations under the License.
|
|
|
38247
38662
|
|
|
38248
38663
|
---
|
|
38249
38664
|
|
|
38250
|
-
The following software may be included in this product:
|
|
38665
|
+
The following software may be included in this product: expect-type (1.3.0)
|
|
38666
|
+
This software contains the following license and notice below:
|
|
38667
|
+
|
|
38668
|
+
Copyright 2024 Misha Kaletsky
|
|
38669
|
+
|
|
38670
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
38671
|
+
you may not use this file except in compliance with the License.
|
|
38672
|
+
You may obtain a copy of the License at
|
|
38673
|
+
|
|
38674
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
38675
|
+
|
|
38676
|
+
Unless required by applicable law or agreed to in writing, software
|
|
38677
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
38678
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
38679
|
+
See the License for the specific language governing permissions and
|
|
38680
|
+
limitations under the License.
|
|
38681
|
+
|
|
38682
|
+
|
|
38683
|
+
Apache License
|
|
38684
|
+
Version 2.0, January 2004
|
|
38685
|
+
http://www.apache.org/licenses/
|
|
38686
|
+
|
|
38687
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
38688
|
+
|
|
38689
|
+
1. Definitions.
|
|
38690
|
+
|
|
38691
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
38692
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
38693
|
+
|
|
38694
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
38695
|
+
the copyright owner that is granting the License.
|
|
38696
|
+
|
|
38697
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
38698
|
+
other entities that control, are controlled by, or are under common
|
|
38699
|
+
control with that entity. For the purposes of this definition,
|
|
38700
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
38701
|
+
direction or management of such entity, whether by contract or
|
|
38702
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
38703
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
38704
|
+
|
|
38705
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
38706
|
+
exercising permissions granted by this License.
|
|
38707
|
+
|
|
38708
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
38709
|
+
including but not limited to software source code, documentation
|
|
38710
|
+
source, and configuration files.
|
|
38711
|
+
|
|
38712
|
+
"Object" form shall mean any form resulting from mechanical
|
|
38713
|
+
transformation or translation of a Source form, including but
|
|
38714
|
+
not limited to compiled object code, generated documentation,
|
|
38715
|
+
and conversions to other media types.
|
|
38716
|
+
|
|
38717
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
38718
|
+
Object form, made available under the License, as indicated by a
|
|
38719
|
+
copyright notice that is included in or attached to the work
|
|
38720
|
+
(an example is provided in the Appendix below).
|
|
38721
|
+
|
|
38722
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
38723
|
+
form, that is based on (or derived from) the Work and for which the
|
|
38724
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
38725
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
38726
|
+
of this License, Derivative Works shall not include works that remain
|
|
38727
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
38728
|
+
the Work and Derivative Works thereof.
|
|
38729
|
+
|
|
38730
|
+
"Contribution" shall mean any work of authorship, including
|
|
38731
|
+
the original version of the Work and any modifications or additions
|
|
38732
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
38733
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
38734
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
38735
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
38736
|
+
means any form of electronic, verbal, or written communication sent
|
|
38737
|
+
to the Licensor or its representatives, including but not limited to
|
|
38738
|
+
communication on electronic mailing lists, source code control systems,
|
|
38739
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
38740
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
38741
|
+
excluding communication that is conspicuously marked or otherwise
|
|
38742
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
38743
|
+
|
|
38744
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
38745
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
38746
|
+
subsequently incorporated within the Work.
|
|
38747
|
+
|
|
38748
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
38749
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
38750
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
38751
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
38752
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
38753
|
+
Work and such Derivative Works in Source or Object form.
|
|
38754
|
+
|
|
38755
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
38756
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
38757
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
38758
|
+
(except as stated in this section) patent license to make, have made,
|
|
38759
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
38760
|
+
where such license applies only to those patent claims licensable
|
|
38761
|
+
by such Contributor that are necessarily infringed by their
|
|
38762
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
38763
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
38764
|
+
institute patent litigation against any entity (including a
|
|
38765
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
38766
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
38767
|
+
or contributory patent infringement, then any patent licenses
|
|
38768
|
+
granted to You under this License for that Work shall terminate
|
|
38769
|
+
as of the date such litigation is filed.
|
|
38770
|
+
|
|
38771
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
38772
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
38773
|
+
modifications, and in Source or Object form, provided that You
|
|
38774
|
+
meet the following conditions:
|
|
38775
|
+
|
|
38776
|
+
(a) You must give any other recipients of the Work or
|
|
38777
|
+
Derivative Works a copy of this License; and
|
|
38778
|
+
|
|
38779
|
+
(b) You must cause any modified files to carry prominent notices
|
|
38780
|
+
stating that You changed the files; and
|
|
38781
|
+
|
|
38782
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
38783
|
+
that You distribute, all copyright, patent, trademark, and
|
|
38784
|
+
attribution notices from the Source form of the Work,
|
|
38785
|
+
excluding those notices that do not pertain to any part of
|
|
38786
|
+
the Derivative Works; and
|
|
38787
|
+
|
|
38788
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
38789
|
+
distribution, then any Derivative Works that You distribute must
|
|
38790
|
+
include a readable copy of the attribution notices contained
|
|
38791
|
+
within such NOTICE file, excluding those notices that do not
|
|
38792
|
+
pertain to any part of the Derivative Works, in at least one
|
|
38793
|
+
of the following places: within a NOTICE text file distributed
|
|
38794
|
+
as part of the Derivative Works; within the Source form or
|
|
38795
|
+
documentation, if provided along with the Derivative Works; or,
|
|
38796
|
+
within a display generated by the Derivative Works, if and
|
|
38797
|
+
wherever such third-party notices normally appear. The contents
|
|
38798
|
+
of the NOTICE file are for informational purposes only and
|
|
38799
|
+
do not modify the License. You may add Your own attribution
|
|
38800
|
+
notices within Derivative Works that You distribute, alongside
|
|
38801
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
38802
|
+
that such additional attribution notices cannot be construed
|
|
38803
|
+
as modifying the License.
|
|
38804
|
+
|
|
38805
|
+
You may add Your own copyright statement to Your modifications and
|
|
38806
|
+
may provide additional or different license terms and conditions
|
|
38807
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
38808
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
38809
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
38810
|
+
the conditions stated in this License.
|
|
38811
|
+
|
|
38812
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
38813
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
38814
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
38815
|
+
this License, without any additional terms or conditions.
|
|
38816
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
38817
|
+
the terms of any separate license agreement you may have executed
|
|
38818
|
+
with Licensor regarding such Contributions.
|
|
38819
|
+
|
|
38820
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
38821
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
38822
|
+
except as required for reasonable and customary use in describing the
|
|
38823
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
38824
|
+
|
|
38825
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
38826
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
38827
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
38828
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
38829
|
+
implied, including, without limitation, any warranties or conditions
|
|
38830
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
38831
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
38832
|
+
appropriateness of using or redistributing the Work and assume any
|
|
38833
|
+
risks associated with Your exercise of permissions under this License.
|
|
38834
|
+
|
|
38835
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
38836
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
38837
|
+
unless required by applicable law (such as deliberate and grossly
|
|
38838
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
38839
|
+
liable to You for damages, including any direct, indirect, special,
|
|
38840
|
+
incidental, or consequential damages of any character arising as a
|
|
38841
|
+
result of this License or out of the use or inability to use the
|
|
38842
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
38843
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
38844
|
+
other commercial damages or losses), even if such Contributor
|
|
38845
|
+
has been advised of the possibility of such damages.
|
|
38846
|
+
|
|
38847
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
38848
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
38849
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
38850
|
+
or other liability obligations and/or rights consistent with this
|
|
38851
|
+
License. However, in accepting such obligations, You may act only
|
|
38852
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
38853
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
38854
|
+
defend, and hold each Contributor harmless for any liability
|
|
38855
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
38856
|
+
of your accepting any such warranty or additional liability.
|
|
38857
|
+
|
|
38858
|
+
END OF TERMS AND CONDITIONS
|
|
38859
|
+
|
|
38860
|
+
---
|
|
38861
|
+
|
|
38862
|
+
The following software may be included in this product: forever-agent (0.6.1)
|
|
38863
|
+
This software contains the following license and notice below:
|
|
38864
|
+
|
|
38865
|
+
Apache License
|
|
38866
|
+
|
|
38867
|
+
Version 2.0, January 2004
|
|
38868
|
+
|
|
38869
|
+
http://www.apache.org/licenses/
|
|
38870
|
+
|
|
38871
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
38872
|
+
|
|
38873
|
+
1. Definitions.
|
|
38874
|
+
|
|
38875
|
+
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
|
38876
|
+
|
|
38877
|
+
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
|
|
38878
|
+
|
|
38879
|
+
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
|
|
38880
|
+
|
|
38881
|
+
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
|
|
38882
|
+
|
|
38883
|
+
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
|
|
38884
|
+
|
|
38885
|
+
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
|
|
38886
|
+
|
|
38887
|
+
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
|
|
38888
|
+
|
|
38889
|
+
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
|
|
38890
|
+
|
|
38891
|
+
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
|
|
38892
|
+
|
|
38893
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
|
|
38894
|
+
|
|
38895
|
+
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
|
|
38896
|
+
|
|
38897
|
+
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
|
|
38898
|
+
|
|
38899
|
+
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
|
|
38900
|
+
|
|
38901
|
+
You must give any other recipients of the Work or Derivative Works a copy of this License; and
|
|
38902
|
+
|
|
38903
|
+
You must cause any modified files to carry prominent notices stating that You changed the files; and
|
|
38904
|
+
|
|
38905
|
+
You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
|
|
38906
|
+
|
|
38907
|
+
If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
|
|
38908
|
+
|
|
38909
|
+
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
|
|
38910
|
+
|
|
38911
|
+
6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
|
|
38912
|
+
|
|
38913
|
+
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
|
|
38914
|
+
|
|
38915
|
+
8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
|
|
38916
|
+
|
|
38917
|
+
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
|
|
38918
|
+
|
|
38919
|
+
END OF TERMS AND CONDITIONS
|
|
38920
|
+
|
|
38921
|
+
---
|
|
38922
|
+
|
|
38923
|
+
The following software may be included in this product: fuse.js (7.3.0)
|
|
38251
38924
|
This software contains the following license and notice below:
|
|
38252
38925
|
|
|
38253
38926
|
Apache License
|
|
@@ -38438,7 +39111,7 @@ APPENDIX: How to apply the Apache License to your work.
|
|
|
38438
39111
|
same "printed page" as the copyright notice for easier
|
|
38439
39112
|
identification within third-party archives.
|
|
38440
39113
|
|
|
38441
|
-
Copyright
|
|
39114
|
+
Copyright 2017 Kirollos Risk
|
|
38442
39115
|
|
|
38443
39116
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
38444
39117
|
you may not use this file except in compliance with the License.
|
|
@@ -38454,25 +39127,29 @@ limitations under the License.
|
|
|
38454
39127
|
|
|
38455
39128
|
---
|
|
38456
39129
|
|
|
38457
|
-
The following software may be included in this product:
|
|
39130
|
+
The following software may be included in this product: log4js (6.9.1)
|
|
38458
39131
|
This software contains the following license and notice below:
|
|
38459
39132
|
|
|
38460
|
-
Copyright
|
|
39133
|
+
Copyright 2015 Gareth Jones (with contributions from many other people)
|
|
38461
39134
|
|
|
38462
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
38463
|
-
you may not use this file except in compliance with the License.
|
|
38464
|
-
You may obtain a copy of the License at
|
|
39135
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
39136
|
+
you may not use this file except in compliance with the License.
|
|
39137
|
+
You may obtain a copy of the License at
|
|
38465
39138
|
|
|
38466
|
-
|
|
39139
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
38467
39140
|
|
|
38468
|
-
Unless required by applicable law or agreed to in writing, software
|
|
38469
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
38470
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
38471
|
-
See the License for the specific language governing permissions and
|
|
38472
|
-
limitations under the License.
|
|
39141
|
+
Unless required by applicable law or agreed to in writing, software
|
|
39142
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
39143
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
39144
|
+
See the License for the specific language governing permissions and
|
|
39145
|
+
limitations under the License.
|
|
38473
39146
|
|
|
39147
|
+
---
|
|
38474
39148
|
|
|
38475
|
-
|
|
39149
|
+
The following software may be included in this product: readdir-glob (1.1.3)
|
|
39150
|
+
This software contains the following license and notice below:
|
|
39151
|
+
|
|
39152
|
+
Apache License
|
|
38476
39153
|
Version 2.0, January 2004
|
|
38477
39154
|
http://www.apache.org/licenses/
|
|
38478
39155
|
|
|
@@ -38649,70 +39326,34 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
|
38649
39326
|
|
|
38650
39327
|
END OF TERMS AND CONDITIONS
|
|
38651
39328
|
|
|
38652
|
-
|
|
38653
|
-
|
|
38654
|
-
The following software may be included in this product: forever-agent (0.6.1)
|
|
38655
|
-
This software contains the following license and notice below:
|
|
38656
|
-
|
|
38657
|
-
Apache License
|
|
38658
|
-
|
|
38659
|
-
Version 2.0, January 2004
|
|
38660
|
-
|
|
38661
|
-
http://www.apache.org/licenses/
|
|
38662
|
-
|
|
38663
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
38664
|
-
|
|
38665
|
-
1. Definitions.
|
|
38666
|
-
|
|
38667
|
-
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
|
38668
|
-
|
|
38669
|
-
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
|
|
38670
|
-
|
|
38671
|
-
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
|
|
38672
|
-
|
|
38673
|
-
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
|
|
38674
|
-
|
|
38675
|
-
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
|
|
38676
|
-
|
|
38677
|
-
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
|
|
38678
|
-
|
|
38679
|
-
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
|
|
38680
|
-
|
|
38681
|
-
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
|
|
38682
|
-
|
|
38683
|
-
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
|
|
38684
|
-
|
|
38685
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
|
|
38686
|
-
|
|
38687
|
-
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
|
|
38688
|
-
|
|
38689
|
-
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
|
|
38690
|
-
|
|
38691
|
-
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
|
|
38692
|
-
|
|
38693
|
-
You must give any other recipients of the Work or Derivative Works a copy of this License; and
|
|
38694
|
-
|
|
38695
|
-
You must cause any modified files to carry prominent notices stating that You changed the files; and
|
|
38696
|
-
|
|
38697
|
-
You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
|
|
38698
|
-
|
|
38699
|
-
If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
|
|
38700
|
-
|
|
38701
|
-
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
|
|
39329
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
38702
39330
|
|
|
38703
|
-
|
|
39331
|
+
To apply the Apache License to your work, attach the following
|
|
39332
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
39333
|
+
replaced with your own identifying information. (Don't include
|
|
39334
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
39335
|
+
comment syntax for the file format. We also recommend that a
|
|
39336
|
+
file or class name and description of purpose be included on the
|
|
39337
|
+
same "printed page" as the copyright notice for easier
|
|
39338
|
+
identification within third-party archives.
|
|
38704
39339
|
|
|
38705
|
-
|
|
39340
|
+
Copyright 2020 Yann Armelin
|
|
38706
39341
|
|
|
38707
|
-
|
|
39342
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
39343
|
+
you may not use this file except in compliance with the License.
|
|
39344
|
+
You may obtain a copy of the License at
|
|
38708
39345
|
|
|
38709
|
-
|
|
39346
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
38710
39347
|
|
|
38711
|
-
|
|
39348
|
+
Unless required by applicable law or agreed to in writing, software
|
|
39349
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
39350
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
39351
|
+
See the License for the specific language governing permissions and
|
|
39352
|
+
limitations under the License.
|
|
38712
39353
|
|
|
38713
39354
|
---
|
|
38714
39355
|
|
|
38715
|
-
The following software may be included in this product:
|
|
39356
|
+
The following software may be included in this product: spdx-correct (3.2.0)
|
|
38716
39357
|
This software contains the following license and notice below:
|
|
38717
39358
|
|
|
38718
39359
|
Apache License
|
|
@@ -38895,7 +39536,7 @@ END OF TERMS AND CONDITIONS
|
|
|
38895
39536
|
APPENDIX: How to apply the Apache License to your work.
|
|
38896
39537
|
|
|
38897
39538
|
To apply the Apache License to your work, attach the following
|
|
38898
|
-
boilerplate notice, with the fields enclosed by brackets "
|
|
39539
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
38899
39540
|
replaced with your own identifying information. (Don't include
|
|
38900
39541
|
the brackets!) The text should be enclosed in the appropriate
|
|
38901
39542
|
comment syntax for the file format. We also recommend that a
|
|
@@ -38903,7 +39544,7 @@ APPENDIX: How to apply the Apache License to your work.
|
|
|
38903
39544
|
same "printed page" as the copyright notice for easier
|
|
38904
39545
|
identification within third-party archives.
|
|
38905
39546
|
|
|
38906
|
-
Copyright
|
|
39547
|
+
Copyright [yyyy] [name of copyright owner]
|
|
38907
39548
|
|
|
38908
39549
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
38909
39550
|
you may not use this file except in compliance with the License.
|
|
@@ -38919,26 +39560,7 @@ limitations under the License.
|
|
|
38919
39560
|
|
|
38920
39561
|
---
|
|
38921
39562
|
|
|
38922
|
-
The following software may be included in this product:
|
|
38923
|
-
This software contains the following license and notice below:
|
|
38924
|
-
|
|
38925
|
-
Copyright 2015 Gareth Jones (with contributions from many other people)
|
|
38926
|
-
|
|
38927
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
38928
|
-
you may not use this file except in compliance with the License.
|
|
38929
|
-
You may obtain a copy of the License at
|
|
38930
|
-
|
|
38931
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
38932
|
-
|
|
38933
|
-
Unless required by applicable law or agreed to in writing, software
|
|
38934
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
38935
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
38936
|
-
See the License for the specific language governing permissions and
|
|
38937
|
-
limitations under the License.
|
|
38938
|
-
|
|
38939
|
-
---
|
|
38940
|
-
|
|
38941
|
-
The following software may be included in this product: readdir-glob (1.1.3)
|
|
39563
|
+
The following software may be included in this product: text-decoder (1.2.3)
|
|
38942
39564
|
This software contains the following license and notice below:
|
|
38943
39565
|
|
|
38944
39566
|
Apache License
|
|
@@ -39129,7 +39751,7 @@ APPENDIX: How to apply the Apache License to your work.
|
|
|
39129
39751
|
same "printed page" as the copyright notice for easier
|
|
39130
39752
|
identification within third-party archives.
|
|
39131
39753
|
|
|
39132
|
-
Copyright
|
|
39754
|
+
Copyright [yyyy] [name of copyright owner]
|
|
39133
39755
|
|
|
39134
39756
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
39135
39757
|
you may not use this file except in compliance with the License.
|
|
@@ -39145,7 +39767,190 @@ limitations under the License.
|
|
|
39145
39767
|
|
|
39146
39768
|
---
|
|
39147
39769
|
|
|
39148
|
-
The following software may be included in this product:
|
|
39770
|
+
The following software may be included in this product: tunnel-agent (0.6.0)
|
|
39771
|
+
This software contains the following license and notice below:
|
|
39772
|
+
|
|
39773
|
+
Apache License
|
|
39774
|
+
|
|
39775
|
+
Version 2.0, January 2004
|
|
39776
|
+
|
|
39777
|
+
http://www.apache.org/licenses/
|
|
39778
|
+
|
|
39779
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
39780
|
+
|
|
39781
|
+
1. Definitions.
|
|
39782
|
+
|
|
39783
|
+
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
|
39784
|
+
|
|
39785
|
+
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
|
|
39786
|
+
|
|
39787
|
+
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
|
|
39788
|
+
|
|
39789
|
+
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
|
|
39790
|
+
|
|
39791
|
+
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
|
|
39792
|
+
|
|
39793
|
+
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
|
|
39794
|
+
|
|
39795
|
+
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
|
|
39796
|
+
|
|
39797
|
+
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
|
|
39798
|
+
|
|
39799
|
+
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
|
|
39800
|
+
|
|
39801
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
|
|
39802
|
+
|
|
39803
|
+
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
|
|
39804
|
+
|
|
39805
|
+
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
|
|
39806
|
+
|
|
39807
|
+
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
|
|
39808
|
+
|
|
39809
|
+
You must give any other recipients of the Work or Derivative Works a copy of this License; and
|
|
39810
|
+
|
|
39811
|
+
You must cause any modified files to carry prominent notices stating that You changed the files; and
|
|
39812
|
+
|
|
39813
|
+
You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
|
|
39814
|
+
|
|
39815
|
+
If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
|
|
39816
|
+
|
|
39817
|
+
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
|
|
39818
|
+
|
|
39819
|
+
6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
|
|
39820
|
+
|
|
39821
|
+
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
|
|
39822
|
+
|
|
39823
|
+
8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
|
|
39824
|
+
|
|
39825
|
+
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
|
|
39826
|
+
|
|
39827
|
+
END OF TERMS AND CONDITIONS
|
|
39828
|
+
|
|
39829
|
+
---
|
|
39830
|
+
|
|
39831
|
+
The following software may be included in this product: typescript (5.9.3)
|
|
39832
|
+
This software contains the following license and notice below:
|
|
39833
|
+
|
|
39834
|
+
Apache License
|
|
39835
|
+
|
|
39836
|
+
Version 2.0, January 2004
|
|
39837
|
+
|
|
39838
|
+
http://www.apache.org/licenses/
|
|
39839
|
+
|
|
39840
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
39841
|
+
|
|
39842
|
+
1. Definitions.
|
|
39843
|
+
|
|
39844
|
+
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
|
39845
|
+
|
|
39846
|
+
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
|
|
39847
|
+
|
|
39848
|
+
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
|
|
39849
|
+
|
|
39850
|
+
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
|
|
39851
|
+
|
|
39852
|
+
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
|
|
39853
|
+
|
|
39854
|
+
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
|
|
39855
|
+
|
|
39856
|
+
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
|
|
39857
|
+
|
|
39858
|
+
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
|
|
39859
|
+
|
|
39860
|
+
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
|
|
39861
|
+
|
|
39862
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
|
|
39863
|
+
|
|
39864
|
+
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
|
|
39865
|
+
|
|
39866
|
+
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
|
|
39867
|
+
|
|
39868
|
+
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
|
|
39869
|
+
|
|
39870
|
+
You must give any other recipients of the Work or Derivative Works a copy of this License; and
|
|
39871
|
+
|
|
39872
|
+
You must cause any modified files to carry prominent notices stating that You changed the files; and
|
|
39873
|
+
|
|
39874
|
+
You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
|
|
39875
|
+
|
|
39876
|
+
If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
|
|
39877
|
+
|
|
39878
|
+
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
|
|
39879
|
+
|
|
39880
|
+
6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
|
|
39881
|
+
|
|
39882
|
+
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
|
|
39883
|
+
|
|
39884
|
+
8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
|
|
39885
|
+
|
|
39886
|
+
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
|
|
39887
|
+
|
|
39888
|
+
END OF TERMS AND CONDITIONS
|
|
39889
|
+
|
|
39890
|
+
---
|
|
39891
|
+
|
|
39892
|
+
The following software may be included in this product: typescript (6.0.3)
|
|
39893
|
+
This software contains the following license and notice below:
|
|
39894
|
+
|
|
39895
|
+
Apache License
|
|
39896
|
+
|
|
39897
|
+
Version 2.0, January 2004
|
|
39898
|
+
|
|
39899
|
+
http://www.apache.org/licenses/
|
|
39900
|
+
|
|
39901
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
39902
|
+
|
|
39903
|
+
1. Definitions.
|
|
39904
|
+
|
|
39905
|
+
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
|
39906
|
+
|
|
39907
|
+
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
|
|
39908
|
+
|
|
39909
|
+
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
|
|
39910
|
+
|
|
39911
|
+
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
|
|
39912
|
+
|
|
39913
|
+
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
|
|
39914
|
+
|
|
39915
|
+
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
|
|
39916
|
+
|
|
39917
|
+
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
|
|
39918
|
+
|
|
39919
|
+
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
|
|
39920
|
+
|
|
39921
|
+
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
|
|
39922
|
+
|
|
39923
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
|
|
39924
|
+
|
|
39925
|
+
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
|
|
39926
|
+
|
|
39927
|
+
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
|
|
39928
|
+
|
|
39929
|
+
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
|
|
39930
|
+
|
|
39931
|
+
You must give any other recipients of the Work or Derivative Works a copy of this License; and
|
|
39932
|
+
|
|
39933
|
+
You must cause any modified files to carry prominent notices stating that You changed the files; and
|
|
39934
|
+
|
|
39935
|
+
You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
|
|
39936
|
+
|
|
39937
|
+
If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
|
|
39938
|
+
|
|
39939
|
+
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
|
|
39940
|
+
|
|
39941
|
+
6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
|
|
39942
|
+
|
|
39943
|
+
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
|
|
39944
|
+
|
|
39945
|
+
8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
|
|
39946
|
+
|
|
39947
|
+
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
|
|
39948
|
+
|
|
39949
|
+
END OF TERMS AND CONDITIONS
|
|
39950
|
+
|
|
39951
|
+
---
|
|
39952
|
+
|
|
39953
|
+
The following software may be included in this product: validate-npm-package-license (3.0.4)
|
|
39149
39954
|
This software contains the following license and notice below:
|
|
39150
39955
|
|
|
39151
39956
|
Apache License
|
|
@@ -39352,189 +40157,6 @@ limitations under the License.
|
|
|
39352
40157
|
|
|
39353
40158
|
---
|
|
39354
40159
|
|
|
39355
|
-
The following software may be included in this product: tunnel-agent (0.6.0)
|
|
39356
|
-
This software contains the following license and notice below:
|
|
39357
|
-
|
|
39358
|
-
Apache License
|
|
39359
|
-
|
|
39360
|
-
Version 2.0, January 2004
|
|
39361
|
-
|
|
39362
|
-
http://www.apache.org/licenses/
|
|
39363
|
-
|
|
39364
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
39365
|
-
|
|
39366
|
-
1. Definitions.
|
|
39367
|
-
|
|
39368
|
-
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
|
39369
|
-
|
|
39370
|
-
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
|
|
39371
|
-
|
|
39372
|
-
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
|
|
39373
|
-
|
|
39374
|
-
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
|
|
39375
|
-
|
|
39376
|
-
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
|
|
39377
|
-
|
|
39378
|
-
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
|
|
39379
|
-
|
|
39380
|
-
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
|
|
39381
|
-
|
|
39382
|
-
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
|
|
39383
|
-
|
|
39384
|
-
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
|
|
39385
|
-
|
|
39386
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
|
|
39387
|
-
|
|
39388
|
-
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
|
|
39389
|
-
|
|
39390
|
-
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
|
|
39391
|
-
|
|
39392
|
-
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
|
|
39393
|
-
|
|
39394
|
-
You must give any other recipients of the Work or Derivative Works a copy of this License; and
|
|
39395
|
-
|
|
39396
|
-
You must cause any modified files to carry prominent notices stating that You changed the files; and
|
|
39397
|
-
|
|
39398
|
-
You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
|
|
39399
|
-
|
|
39400
|
-
If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
|
|
39401
|
-
|
|
39402
|
-
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
|
|
39403
|
-
|
|
39404
|
-
6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
|
|
39405
|
-
|
|
39406
|
-
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
|
|
39407
|
-
|
|
39408
|
-
8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
|
|
39409
|
-
|
|
39410
|
-
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
|
|
39411
|
-
|
|
39412
|
-
END OF TERMS AND CONDITIONS
|
|
39413
|
-
|
|
39414
|
-
---
|
|
39415
|
-
|
|
39416
|
-
The following software may be included in this product: typescript (5.9.3)
|
|
39417
|
-
This software contains the following license and notice below:
|
|
39418
|
-
|
|
39419
|
-
Apache License
|
|
39420
|
-
|
|
39421
|
-
Version 2.0, January 2004
|
|
39422
|
-
|
|
39423
|
-
http://www.apache.org/licenses/
|
|
39424
|
-
|
|
39425
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
39426
|
-
|
|
39427
|
-
1. Definitions.
|
|
39428
|
-
|
|
39429
|
-
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
|
39430
|
-
|
|
39431
|
-
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
|
|
39432
|
-
|
|
39433
|
-
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
|
|
39434
|
-
|
|
39435
|
-
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
|
|
39436
|
-
|
|
39437
|
-
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
|
|
39438
|
-
|
|
39439
|
-
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
|
|
39440
|
-
|
|
39441
|
-
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
|
|
39442
|
-
|
|
39443
|
-
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
|
|
39444
|
-
|
|
39445
|
-
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
|
|
39446
|
-
|
|
39447
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
|
|
39448
|
-
|
|
39449
|
-
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
|
|
39450
|
-
|
|
39451
|
-
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
|
|
39452
|
-
|
|
39453
|
-
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
|
|
39454
|
-
|
|
39455
|
-
You must give any other recipients of the Work or Derivative Works a copy of this License; and
|
|
39456
|
-
|
|
39457
|
-
You must cause any modified files to carry prominent notices stating that You changed the files; and
|
|
39458
|
-
|
|
39459
|
-
You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
|
|
39460
|
-
|
|
39461
|
-
If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
|
|
39462
|
-
|
|
39463
|
-
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
|
|
39464
|
-
|
|
39465
|
-
6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
|
|
39466
|
-
|
|
39467
|
-
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
|
|
39468
|
-
|
|
39469
|
-
8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
|
|
39470
|
-
|
|
39471
|
-
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
|
|
39472
|
-
|
|
39473
|
-
END OF TERMS AND CONDITIONS
|
|
39474
|
-
|
|
39475
|
-
---
|
|
39476
|
-
|
|
39477
|
-
The following software may be included in this product: typescript (6.0.3)
|
|
39478
|
-
This software contains the following license and notice below:
|
|
39479
|
-
|
|
39480
|
-
Apache License
|
|
39481
|
-
|
|
39482
|
-
Version 2.0, January 2004
|
|
39483
|
-
|
|
39484
|
-
http://www.apache.org/licenses/
|
|
39485
|
-
|
|
39486
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
39487
|
-
|
|
39488
|
-
1. Definitions.
|
|
39489
|
-
|
|
39490
|
-
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
|
39491
|
-
|
|
39492
|
-
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
|
|
39493
|
-
|
|
39494
|
-
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
|
|
39495
|
-
|
|
39496
|
-
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
|
|
39497
|
-
|
|
39498
|
-
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
|
|
39499
|
-
|
|
39500
|
-
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
|
|
39501
|
-
|
|
39502
|
-
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
|
|
39503
|
-
|
|
39504
|
-
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
|
|
39505
|
-
|
|
39506
|
-
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
|
|
39507
|
-
|
|
39508
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
|
|
39509
|
-
|
|
39510
|
-
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
|
|
39511
|
-
|
|
39512
|
-
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
|
|
39513
|
-
|
|
39514
|
-
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
|
|
39515
|
-
|
|
39516
|
-
You must give any other recipients of the Work or Derivative Works a copy of this License; and
|
|
39517
|
-
|
|
39518
|
-
You must cause any modified files to carry prominent notices stating that You changed the files; and
|
|
39519
|
-
|
|
39520
|
-
You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
|
|
39521
|
-
|
|
39522
|
-
If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
|
|
39523
|
-
|
|
39524
|
-
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
|
|
39525
|
-
|
|
39526
|
-
6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
|
|
39527
|
-
|
|
39528
|
-
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
|
|
39529
|
-
|
|
39530
|
-
8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
|
|
39531
|
-
|
|
39532
|
-
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
|
|
39533
|
-
|
|
39534
|
-
END OF TERMS AND CONDITIONS
|
|
39535
|
-
|
|
39536
|
-
---
|
|
39537
|
-
|
|
39538
40160
|
The following software may be included in this product: xml-name-validator (5.0.0)
|
|
39539
40161
|
This software contains the following license and notice below:
|
|
39540
40162
|
|
|
@@ -39756,6 +40378,32 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
39756
40378
|
|
|
39757
40379
|
---
|
|
39758
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
|
+
|
|
39759
40407
|
The following software may be included in this product: @trysound/sax (0.2.0)
|
|
39760
40408
|
This software contains the following license and notice below:
|
|
39761
40409
|
|
|
@@ -39777,6 +40425,58 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
39777
40425
|
|
|
39778
40426
|
---
|
|
39779
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
|
+
|
|
39780
40480
|
The following software may be included in this product: at-least-node (1.0.0)
|
|
39781
40481
|
This software contains the following license and notice below:
|
|
39782
40482
|
|
|
@@ -40126,6 +40826,25 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
40126
40826
|
|
|
40127
40827
|
---
|
|
40128
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
|
+
|
|
40129
40848
|
The following software may be included in this product: icss-utils (5.1.0)
|
|
40130
40849
|
This software contains the following license and notice below:
|
|
40131
40850
|
|
|
@@ -40474,6 +41193,48 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
40474
41193
|
|
|
40475
41194
|
---
|
|
40476
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
|
+
|
|
40477
41238
|
The following software may be included in this product: once (1.4.0)
|
|
40478
41239
|
This software contains the following license and notice below:
|
|
40479
41240
|
|
|
@@ -40553,6 +41314,48 @@ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH RE
|
|
|
40553
41314
|
|
|
40554
41315
|
---
|
|
40555
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
|
+
|
|
40556
41359
|
The following software may be included in this product: saxes (6.0.0)
|
|
40557
41360
|
This software contains the following license and notice below:
|
|
40558
41361
|
|
|
@@ -40735,6 +41538,27 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
40735
41538
|
|
|
40736
41539
|
---
|
|
40737
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
|
+
|
|
40738
41562
|
The following software may be included in this product: split2 (4.2.0)
|
|
40739
41563
|
This software contains the following license and notice below:
|
|
40740
41564
|
|
|
@@ -41502,6 +42326,35 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
41502
42326
|
|
|
41503
42327
|
---
|
|
41504
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
|
+
|
|
41505
42358
|
The following software may be included in this product: qs (6.13.0)
|
|
41506
42359
|
This software contains the following license and notice below:
|
|
41507
42360
|
|
|
@@ -42274,6 +43127,27 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
42274
43127
|
|
|
42275
43128
|
---
|
|
42276
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
|
+
|
|
42277
43151
|
The following software may be included in this product: nth-check (2.1.1)
|
|
42278
43152
|
This software contains the following license and notice below:
|
|
42279
43153
|
|
|
@@ -45335,6 +46209,134 @@ For more information, please see
|
|
|
45335
46209
|
|
|
45336
46210
|
---
|
|
45337
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
|
+
|
|
45338
46340
|
The following software may be included in this product: string-hash (1.1.3)
|
|
45339
46341
|
This software was created by The Dark Sky Company
|
|
45340
46342
|
This software contains the following license and notice below:
|
|
@@ -45556,6 +46558,348 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
45556
46558
|
|
|
45557
46559
|
---
|
|
45558
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
|
+
|
|
45559
46903
|
The following software may be included in this product: truncate-utf8-bytes (1.0.2)
|
|
45560
46904
|
This software was created by Carl Xiong
|
|
45561
46905
|
This software contains the following license and notice below:
|