From 54febbd49b39faa3db5c2abfcea9b93e5ac02445 Mon Sep 17 00:00:00 2001 From: Timo Hocker Date: Tue, 5 May 2020 13:32:40 +0200 Subject: [PATCH] copyright --- .eslintrc.js | 7 +++++++ .liconfig.json | 8 ++++++++ LICENSE | 7 +++++++ jenkins.js | 7 +++++++ lib/.eslintrc.js | 7 +++++++ lib/InteractiveOptions.ts | 7 +++++++ lib/enquirer.d.ts | 7 +++++++ lib/index.ts | 7 +++++++ package.json | 2 +- 9 files changed, 58 insertions(+), 1 deletion(-) create mode 100644 .liconfig.json create mode 100644 LICENSE diff --git a/.eslintrc.js b/.eslintrc.js index 6710f8a..2f12bfb 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of console-app which is released under MIT. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , May 2020 + */ + module.exports = { env: { commonjs: true, diff --git a/.liconfig.json b/.liconfig.json new file mode 100644 index 0000000..b986d26 --- /dev/null +++ b/.liconfig.json @@ -0,0 +1,8 @@ +{ + "has_license": true, + "license": "MIT", + "author": "Timo Hocker", + "company": "Sapphirecode", + "email": "timo@scode.ovh", + "software": "console-app" +} \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..50704b2 --- /dev/null +++ b/LICENSE @@ -0,0 +1,7 @@ +MIT License Copyright (c) + +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 (including the next paragraph) 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. \ No newline at end of file diff --git a/jenkins.js b/jenkins.js index 9b88533..bae11ae 100644 --- a/jenkins.js +++ b/jenkins.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of console-app which is released under MIT. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , May 2020 + */ + /* eslint-disable no-process-exit */ /* eslint-disable no-console */ /* eslint-disable no-sync */ diff --git a/lib/.eslintrc.js b/lib/.eslintrc.js index 7a9c97b..174db87 100644 --- a/lib/.eslintrc.js +++ b/lib/.eslintrc.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of console-app which is released under MIT. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , May 2020 + */ + module.exports = { env: { commonjs: true, diff --git a/lib/InteractiveOptions.ts b/lib/InteractiveOptions.ts index 239d88f..bfa918c 100644 --- a/lib/InteractiveOptions.ts +++ b/lib/InteractiveOptions.ts @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of console-app which is released under MIT. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , May 2020 + */ + /* eslint-disable max-lines-per-function */ /* eslint-disable complexity */ /* eslint-disable max-statements */ diff --git a/lib/enquirer.d.ts b/lib/enquirer.d.ts index 7d722fd..193f5ce 100644 --- a/lib/enquirer.d.ts +++ b/lib/enquirer.d.ts @@ -1 +1,8 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of console-app which is released under MIT. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , May 2020 + */ + declare module 'enquirer'; diff --git a/lib/index.ts b/lib/index.ts index 96b8be1..dabfd57 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -1 +1,8 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of console-app which is released under MIT. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , May 2020 + */ + export { InteractiveOptions } from './InteractiveOptions'; diff --git a/package.json b/package.json index e56cc3c..6c022b3 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@scode/console-app", "version": "1.0.0", "main": "dist/index.js", - "author": "Timo Hocker ", + "author": "Timo Hocker ", "license": "MIT", "devDependencies": { "@ava/typescript": "^1.1.1",