aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/package.json
blob: e6ac55055452bd5d4e61d86cf4bde411d3af9ead (plain)
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
35
{
  "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",
    "strftime": "^0.8.2"
  },
  "files": [
    "README.md",
    "index.js",
    "binding.gyp",
    "examples",
    "ext",
    "interop",
    "src",
    "test"
  ],
  "main": "index.js"
}