Initial commit of Go NPM

Allows you to distribute and install Go binaries through NPM.
This commit is contained in:
Sanath Kumar Ramesh
2017-08-07 21:50:34 -07:00
parent 9e7c0a2a46
commit e879e81a02
5 changed files with 180 additions and 0 deletions

17
package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "go-npm",
"version": "0.1.0",
"description": "Distribute and install Go binaries via NPM",
"main": "index.js",
"bin": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Sanath Kumar Ramesh <dayanandasaraswati@gmail.com>",
"license": "Apache-2.0",
"dependencies": {
"mkdirp": "^0.5.1",
"request": "^2.81.0",
"tar": "^2.2.1"
}
}