From d62e859fad7514eee4e083c3c15c02cc20d6ddac Mon Sep 17 00:00:00 2001 From: Philip Heinser Date: Wed, 31 Dec 2014 17:44:10 +0100 Subject: [PATCH] updated package json --- LICENSE | 21 +++++++++++++++++++++ package.json | 17 ++++++++++++++--- 2 files changed, 35 insertions(+), 3 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..bb502f1 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2015 Philip Heinser + +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. \ No newline at end of file diff --git a/package.json b/package.json index 4402237..31cecca 100644 --- a/package.json +++ b/package.json @@ -1,17 +1,28 @@ { "name": "route53-heroku", - "version": "0.0.2", + "version": "1.0.0", "description": "A simple service to get route 53 to point to your heroku app.", "main": "index.js", "scripts": { "start": "node index" }, - "repository": "https://github.com/philipheinser/route53-heroku", + "repository": { + "type": "git", + "url": "philipheinser/route53-heroku" + }, "author": "Philip Heinser ", + "keywords": [ + "aws", + "heroku", + "route53", + "dns" + ], "dependencies": { "aws-sdk": "^2.1.0", "cron": "^1.0.5", "nconf": "^0.7.1", "underscore": "^1.7.0" - } + }, + "engines": { "node": "0.10.x" }, + "license": "MIT" }