mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.5 KiB
62 lines
1.5 KiB
{ |
|
"name": "grpc", |
|
"version": "0.11.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/node/src" |
|
}, |
|
"scripts": { |
|
"lint": "node ./node_modules/jshint/bin/jshint src/node/src src/node/test src/node/interop src/node/index.js", |
|
"test": "./node_modules/.bin/mocha src/node/test && npm run-script lint", |
|
"gen_docs": "./node_modules/.bin/jsdoc -c src/node/jsdoc_conf.json", |
|
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha src/node/test" |
|
}, |
|
"dependencies": { |
|
"bindings": "^1.2.0", |
|
"lodash": "^3.9.3", |
|
"nan": "^2.0.0", |
|
"protobufjs": "^4.0.0" |
|
}, |
|
"devDependencies": { |
|
"async": "^0.9.0", |
|
"google-auth-library": "^0.9.2", |
|
"istanbul": "^0.3.21", |
|
"jsdoc": "^3.3.2", |
|
"jshint": "^2.5.0", |
|
"minimist": "^1.1.0", |
|
"mocha": "~1.21.0", |
|
"mocha-jenkins-reporter": "^0.1.9", |
|
"mustache": "^2.0.0" |
|
}, |
|
"engines": { |
|
"node": ">=0.10.13" |
|
}, |
|
"files": [ |
|
"LICENSE", |
|
"src/node/README.md", |
|
"src/node/index.js", |
|
"src/node/ext", |
|
"src/node/health_check", |
|
"src/node/src", |
|
"src/core", |
|
"test/proto", |
|
"include", |
|
"etc", |
|
"binding.gyp" |
|
], |
|
"main": "src/node/index.js", |
|
"license": "BSD-3-Clause" |
|
}
|
|
|