From d0d9c1ba9d3facf1086438e21d6d329c599e5a3b Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Sat, 13 May 2023 18:26:06 +0900 Subject: [PATCH] chore: add license --- LICENSE | 42 ++++++++++++++++++++++++++++++++++++++++++ README.md | 6 ++++++ vendor.ts | 2 ++ 3 files changed, 50 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..410485e --- /dev/null +++ b/LICENSE @@ -0,0 +1,42 @@ +Copyright Node.js contributors. All rights reserved. + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + +--- + +MIT License + +Copyright 2018-2023 the Deno authors + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. diff --git a/README.md b/README.md index dcdcb5d..ff467ae 100644 --- a/README.md +++ b/README.md @@ -9,3 +9,9 @@ deno task vendor ``` This updates `test/` directory with the test cases of the updated Node.js version. + +# LICENSE + +MIT License. Copyright Node.js contributors. All rights reserved. + +MIT License. Copyright 2023 the Deno authors. All rights reserved. \ No newline at end of file diff --git a/vendor.ts b/vendor.ts index 517060c..8b71bb9 100644 --- a/vendor.ts +++ b/vendor.ts @@ -1,3 +1,5 @@ +// Copyright 2023 the Deno authors. All rights reserved. MIT license. + /** This scripts vendors the test/ dir of nodejs repository to local ./test dir */ import $ from "https://deno.land/x/dax@0.31.1/mod.ts";