Updating package.json to add github link

This commit is contained in:
Sanath Kumar Ramesh
2017-08-10 23:16:09 -07:00
parent 6e80d13fea
commit b3e2cb555f

View File

@@ -1,9 +1,11 @@
{ {
"name": "go-npm", "name": "go-npm",
"version": "0.1.6", "version": "0.1.7",
"description": "Distribute and install Go binaries via NPM", "description": "Distribute and install Go binaries via NPM",
"main": "index.js", "main": "index.js",
"bin": "index.js", "bin": {
"go-npm": "./bin/index.js"
},
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
@@ -14,7 +16,10 @@
"request": "^2.81.0", "request": "^2.81.0",
"tar": "^2.2.1" "tar": "^2.2.1"
}, },
"bin": { "repository": {
"go-npm": "./bin/index.js" "type": "git",
} "url": "https://github.com/sanathkr/go-npm.git"
},
"homepage": "https://github.com/sanathkr/go-npm"
} }