aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/package.json
blob: 0a5528781db8269c1df9e4bee9698c45e50eb190 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
  "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",
    "example": "examples"
  },
  "scripts": {
    "lint": "node ./node_modules/jshint/bin/jshint src test examples interop index.js",
    "test": "./node_modules/.bin/mocha && npm run-script lint",
    "gen_docs": "./node_modules/.bin/jsdoc -c jsdoc_conf.json",
    "coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha"
  },
  "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",
    "mustache": "^2.0.0",
    "strftime": "^0.8.2"
  },
  "engines": {
    "node": ">=0.10.13"
  },
  "files": [
    "LICENSE",
    "README.md",
    "index.js",
    "binding.gyp",
    "bin",
    "cli",
    "examples",
    "ext",
    "interop",
    "src",
    "test"
  ],
  "main": "index.js",
  "license": "BSD-3-Clause"
}