From c8330f86601239906f7983ae49f34c62c6c87b51 Mon Sep 17 00:00:00 2001 From: murgatroid99 Date: Thu, 26 Feb 2015 18:21:48 -0800 Subject: [PATCH] Added useful information and links to Node's package.json --- src/node/package.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/node/package.json b/src/node/package.json index 8e0a7bdb25c..0ef1c990b1e 100644 --- a/src/node/package.json +++ b/src/node/package.json @@ -1,14 +1,24 @@ { "name": "grpc", - "version": "0.5.0", + "version": "0.5.1", "author": "Google Inc.", "description": "gRPC Library for Node", + "homepage": "http://www.grpc.io/", + "repository": { + "type": "git", + "url": "https://github.com/grpc/grpc.git" + }, + "bugs": "https://github.com/grpc/grpc/issues", "contributors": [ { "name": "Michael Lumish", "email": "mlumish@google.com" } ], + "directories": { + "lib": "src", + "example": "examples" + }, "scripts": { "lint": "node ./node_modules/jshint/bin/jshint src test examples interop index.js", "test": "node ./node_modules/mocha/bin/mocha && npm run-script lint"