From 805d1466c405d3eda1c086346ec264ec5150d738 Mon Sep 17 00:00:00 2001 From: Claudio Wunder Date: Tue, 14 May 2024 13:36:55 +0200 Subject: [PATCH] chore: add initial base repository files --- .gitattributes | 2 ++ .gitignore | 5 +++++ CODEOWNERS | 1 + CODE_OF_CONDUCT.md | 4 ++++ LICENSE | 21 +++++++++++++++++++++ 5 files changed, 33 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 CODEOWNERS create mode 100644 CODE_OF_CONDUCT.md create mode 100644 LICENSE diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..205021e --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Enforce Unix newlines +* text=auto eol=lf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1dc047a --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +# Commonly ignored Node.js files +node_modules +npm-debug.log +.npm +.env.* diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..111b58b --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1 @@ +* @nodejs/web-infra diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..8fff30e --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,4 @@ +# Code of Conduct + +- [Node.js Code of Conduct](https://github.com/nodejs/admin/blob/HEAD/CODE_OF_CONDUCT.md) +- [Node.js Moderation Policy](https://github.com/nodejs/admin/blob/HEAD/Moderation-Policy.md) diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..896a53b --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright Node.js Website WG 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.