From b3e2cb555fe8c782660542df9b5274fbacbc1df9 Mon Sep 17 00:00:00 2001 From: Sanath Kumar Ramesh Date: Thu, 10 Aug 2017 23:16:09 -0700 Subject: [PATCH] Updating package.json to add github link --- package.json | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 6f22b43..24cabf6 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,11 @@ { "name": "go-npm", - "version": "0.1.6", + "version": "0.1.7", "description": "Distribute and install Go binaries via NPM", "main": "index.js", - "bin": "index.js", + "bin": { + "go-npm": "./bin/index.js" + }, "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, @@ -14,7 +16,10 @@ "request": "^2.81.0", "tar": "^2.2.1" }, - "bin": { - "go-npm": "./bin/index.js" - } + "repository": { + "type": "git", + "url": "https://github.com/sanathkr/go-npm.git" + }, + "homepage": "https://github.com/sanathkr/go-npm" } +➜