From 989fd8a8448b409de212a137f717dee46df4cc93 Mon Sep 17 00:00:00 2001 From: Mark Johnson Date: Sat, 8 Jul 2017 13:36:31 -0700 Subject: [PATCH] Adding package.json for support installing package via npm. --- LICENSE | 2 +- package.json | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 package.json diff --git a/LICENSE b/LICENSE index 7a67205..d01fbf7 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2015 TechPivot +Copyright (c) 2017 TechPivot Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/package.json b/package.json new file mode 100644 index 0000000..d88b819 --- /dev/null +++ b/package.json @@ -0,0 +1,23 @@ +{ + "name": "aws-code-deploy", + "version": "1.0.2", + "description": "Bash script to easily deploy applications with AWS Code Deploy.", + "author": "TechPivot", + "main": "bin/aws-code-deploy.sh", + "bin": { + "aws-code-deploy": "./bin/aws-code-deploy.sh" + }, + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/techpivot/aws-code-deploy.git" + }, + "license": "MIT", + "keywords": [ + "aws", + "code-deploy", + "bash", + "shell", + "ci", + "deploy" + ] +}