From 8d18b210409e7cd08397e0376095ca821ba1e835 Mon Sep 17 00:00:00 2001 From: "Mr. Angry" Date: Mon, 26 Sep 2016 14:39:36 -0400 Subject: [PATCH] Node.js SDK -- Upgrading gRPC Version Upgrading the gRPC package version to 1.0.0 from the outdated pre-release version, which causes compilation failures on Windows. Adding the x509 package that aids with testing. Change-Id: I62ae11c5a0bc32cb167fff77618e3fbe9ee14dbb Signed-off-by: Anna D Derbakova --- sdk/node/package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sdk/node/package.json b/sdk/node/package.json index b2f689a794e..259647a1d57 100644 --- a/sdk/node/package.json +++ b/sdk/node/package.json @@ -15,7 +15,7 @@ "es6-set": "^0.1.4", "events": "^1.1.0", "fs": "0.0.2", - "grpc": "^0.13.2-pre1", + "grpc": "1.0.0", "hashtable": "^2.0.2", "js-sha3": "^0.5.1", "json-stringify-safe": "^5.0.1", @@ -34,6 +34,7 @@ "uuidv4": "^0.3.1" }, "devDependencies": { - "tape": "^4.5.1" + "tape": "^4.5.1", + "x509": "^0.2.6" } }