1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{
"name": "grpc",
"version": "0.2.0",
"description": "gRPC Library for Node",
"scripts": {
"lint": "nodejs ./node_modules/jshint/bin/jshint src test examples interop index.js",
"test": "nodejs ./node_modules/mocha/bin/mocha && npm run-script lint"
},
"dependencies": {
"bindings": "^1.2.1",
"jshint": "^2.5.5",
"nan": "~1.3.0",
"protobufjs": "murgatroid99/ProtoBuf.js",
"underscore": "^1.7.0",
"underscore.string": "^3.0.0"
},
"devDependencies": {
"async": "^0.9.0",
"googleauth": "google/google-auth-library-nodejs",
"minimist": "^1.1.0",
"mocha": "~1.21.0"
},
"files": [
"README.md",
"index.js",
"binding.gyp",
"examples",
"ext",
"interop",
"src",
"test"
],
"main": "index.js"
}
|