diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3598c30 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +tests \ No newline at end of file diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..c952775 --- /dev/null +++ b/.npmignore @@ -0,0 +1,2 @@ +# Test file +tests \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..1ab5244 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Design and Coded by Ullas Kunder + +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/images/tweety.png b/images/tweety.png deleted file mode 100644 index e4c075a..0000000 Binary files a/images/tweety.png and /dev/null differ diff --git a/main.js b/main.js index f1a1522..7af4cf9 100644 --- a/main.js +++ b/main.js @@ -1,4 +1,4 @@ -#!/usr/bin/env node +#!/usr/bin/env node // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // /!\ DO NOT MODIFY THIS FILE /!\ diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..9bb230b --- /dev/null +++ b/package-lock.json @@ -0,0 +1,16 @@ +{ + "name": "tweety-create", + "version": "1.1.1-1", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "tweety-create", + "version": "1.1.1-1", + "license": "MIT", + "bin": { + "tweety-create": "main.js" + } + } + } +} diff --git a/package.json b/package.json index 42e292f..205e60d 100644 --- a/package.json +++ b/package.json @@ -15,5 +15,9 @@ "core-module" ], "author": "Ullas Kunder", - "license": "MIT" + "license": "MIT", + "files": [ + "bin", + "templates" + ] }