From fd54151eb0453fba86092f485d1d841a279a4d52 Mon Sep 17 00:00:00 2001 From: johnfacey Date: Thu, 18 Mar 2021 19:40:57 -0500 Subject: [PATCH] add license, update package.json --- LICENSE.md | 15 +++++++++++++++ README.md | 2 +- package.json | 7 ++++--- 3 files changed, 20 insertions(+), 4 deletions(-) create mode 100644 LICENSE.md diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..37eac1f --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,15 @@ +ISC License + +Copyright (c) 2021 + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md index d23bdcb..d3f3bda 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Example: feeds.json **Usage** -- *npm start* +- *npm run start* or *node index.js* diff --git a/package.json b/package.json index c327df0..8d45bff 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "link-flayer", "version": "1.0.0", - "description": "", + "description": "Discord RSS News Bot", "main": "index.js", "dependencies": { "discord.js": "^12.5.1", @@ -9,8 +9,9 @@ }, "devDependencies": {}, "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "test": "echo \"Error: no test specified\" && exit 1", + "start": "node index.js" }, - "author": "", + "author": "John Facey", "license": "ISC" }