From 0cea262ac5d48bdf3906593871360928eed4b446 Mon Sep 17 00:00:00 2001 From: Philipp Dormann Date: Wed, 7 Apr 2021 19:03:48 +0200 Subject: [PATCH] added validator js ref #13 --- licenses.md | 58 +++++++++++++++++++++++++++++++++++------------- package.json | 7 ++++-- src/Login.svelte | 16 ++----------- 3 files changed, 50 insertions(+), 31 deletions(-) diff --git a/licenses.md b/licenses.md index db36a85..64d8ed7 100644 --- a/licenses.md +++ b/licenses.md @@ -1,3 +1,31 @@ +# validator +**Author**: Chris O'Hara +**Repo**: https://github.com/chriso/validator.js +**License**: MIT +**Description**: String validation and sanitization +## License Text +Copyright (c) 2018 Chris O'Hara + +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. + + # @odit/license-exporter **Author**: ODIT.Services **Repo**: https://git.odit.services/odit/license-exporter @@ -237,6 +265,21 @@ The above copyright notice and this permission notice shall be included in all c 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. +# svelte-i18n +**Author**: Christian Kaisermann +**Repo**: https://github.com/kaisermann/svelte-i18n +**License**: MIT +**Description**: Internationalization library for Svelte +## License Text +Copyright 2017 Christian Kaisermann + +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. + + # svelte-preprocess **Author**: Christian Kaisermann **Repo**: https://github.com/sveltejs/svelte-preprocess @@ -4987,18 +5030,3 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -# svelte-i18n -**Author**: Christian Kaisermann -**Repo**: https://github.com/kaisermann/svelte-i18n -**License**: MIT -**Description**: Internationalization library for Svelte -## License Text -Copyright 2017 Christian Kaisermann - -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/package.json b/package.json index 371ddfb..91c2621 100644 --- a/package.json +++ b/package.json @@ -19,9 +19,12 @@ "prettier": "^2.2.1", "prettier-plugin-svelte": "^2.2.0", "svelte": "^3.35.0", + "svelte-i18n": "^3.3.7", "svelte-preprocess": "^4.6.9", "vite": "^2.1.2", - "vite-plugin-windicss": "^0.9.2", - "svelte-i18n": "^3.3.7" + "vite-plugin-windicss": "^0.9.2" + }, + "dependencies": { + "validator": "^13.5.2" } } diff --git a/src/Login.svelte b/src/Login.svelte index 5ddba29..4ec4550 100644 --- a/src/Login.svelte +++ b/src/Login.svelte @@ -1,5 +1,7 @@