From 2686118cb8c5af08bb8e00320eeb023b7c0176f9 Mon Sep 17 00:00:00 2001 From: James Clarke Date: Wed, 8 May 2019 19:37:34 +0100 Subject: [PATCH] Tidy up package.json for npm --- LICENSE | 15 +++++++++++++++ package.json | 11 +++++++---- 2 files changed, 22 insertions(+), 4 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..15c7878 --- /dev/null +++ b/LICENSE @@ -0,0 +1,15 @@ +ISC License + +Copyright (c) 2019, James Clarke + +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. diff --git a/package.json b/package.json index 948aa36..f5d680d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,8 @@ { - "name": "cronos", - "version": "0.0.1", - "description": "Schedule tasks with cron", + "name": "cronosjs", + "version": "1.0.0", + "description": "A cron based task scheduler for node and the browser, with extended syntax and timezone support.", + "keywords": ["cron", "schedule", "scheduler", "timezone support"], "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ @@ -12,8 +13,10 @@ "build": "rimraf ./lib && tsc", "test": "jest" }, - "author": "", + "author": "James Clarke ", "license": "ISC", + "repository": "github:jaclarke/cronosjs", + "bugs": "https://github.com/jaclarke/cronosjs/issues", "devDependencies": { "jest": "^24.7.1", "rimraf": "^2.6.3",