diff options
author | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2016-03-18 15:47:14 -0700 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2016-03-18 15:47:14 -0700 |
commit | 26eb86ec9dfc5542899288c60adf64fc0107e270 (patch) | |
tree | 42918943b4a03dca51496724265c509dbd03138a | |
parent | b41a1acfe38c312d06c098964cd0e6b6f17a5a62 (diff) | |
parent | d506ecbcb0993991a6899bba6e3e818be23d8307 (diff) |
Merge pull request #5828 from murgatroid99/node_example_dependencies_fix
Updated example package.json with missing dependency
-rw-r--r-- | examples/node/package.json | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/node/package.json b/examples/node/package.json index 00ba428d96..d135df2464 100644 --- a/examples/node/package.json +++ b/examples/node/package.json @@ -2,6 +2,9 @@ "name": "grpc-examples", "version": "0.1.0", "dependencies": { - "grpc": "0.13.0" + "async": "^1.5.2", + "grpc": "0.13.0", + "lodash": "^4.6.1", + "minimist": "^1.2.0" } } |