aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/package.json
diff options
context:
space:
mode:
authorGravatar Michael Lumish <mlumish@google.com>2015-02-26 18:07:13 -0800
committerGravatar Michael Lumish <mlumish@google.com>2015-02-26 18:07:13 -0800
commit289942fd06badd0cb896db1d4f258c7e4d441e8f (patch)
treea3b77539ba886c4395cd46b409ac209d31c29673 /src/node/package.json
parent7b7aa625f6198129f5a51056d1539ab915a93865 (diff)
parent1dd0183f3625bd37fd216f03376c3bb91e78bd72 (diff)
Merge pull request #859 from nicolasnoble/0_5-extra-commits
"Upporting" commits from 0.5 into master.
Diffstat (limited to 'src/node/package.json')
-rw-r--r--src/node/package.json11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/node/package.json b/src/node/package.json
index e9995e7f0c..8e0a7bdb25 100644
--- a/src/node/package.json
+++ b/src/node/package.json
@@ -1,7 +1,14 @@
{
"name": "grpc",
"version": "0.5.0",
+ "author": "Google Inc.",
"description": "gRPC Library for Node",
+ "contributors": [
+ {
+ "name": "Michael Lumish",
+ "email": "mlumish@google.com"
+ }
+ ],
"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"
@@ -22,6 +29,7 @@
"strftime": "^0.8.2"
},
"files": [
+ "LICENSE",
"README.md",
"index.js",
"binding.gyp",
@@ -31,5 +39,6 @@
"src",
"test"
],
- "main": "index.js"
+ "main": "index.js",
+ "license": "BSD-3-Clause"
}