blob: 7fb34f5f8f825bc206aa7c7bccaf8e9f9cf824f2 [file] [log] [blame]
murgatroid992af89e42015-10-01 11:54:00 -07001{
2 "name": "grpc",
3 "version": "0.11.1",
4 "author": "Google Inc.",
5 "description": "gRPC Library for Node",
6 "homepage": "http://www.grpc.io/",
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/grpc/grpc.git"
10 },
11 "bugs": "https://github.com/grpc/grpc/issues",
12 "contributors": [
13 {
14 "name": "Michael Lumish",
15 "email": "mlumish@google.com"
16 }
17 ],
18 "directories": {
19 "lib": "src/node/src"
20 },
21 "scripts": {
22 "lint": "node ./node_modules/jshint/bin/jshint src/node/src src/node/test src/node/examples src/node/interop src/node/index.js",
23 "test": "./node_modules/.bin/mocha src/node/test && npm run-script lint",
24 "gen_docs": "./node_modules/.bin/jsdoc -c src/node/jsdoc_conf.json",
25 "coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha src/node/test"
26 },
27 "dependencies": {
28 "bindings": "^1.2.0",
29 "lodash": "^3.9.3",
30 "nan": "^2.0.0",
31 "protobufjs": "^4.0.0"
32 },
33 "devDependencies": {
34 "async": "^0.9.0",
35 "google-auth-library": "^0.9.2",
36 "istanbul": "^0.3.21",
37 "jsdoc": "^3.3.2",
38 "jshint": "^2.5.0",
39 "minimist": "^1.1.0",
40 "mocha": "~1.21.0",
41 "mustache": "^2.0.0",
42 "strftime": "^0.8.2"
43 },
44 "engines": {
45 "node": ">=0.10.13"
46 },
47 "files": [
48 "LICENSE",
49 "src/node/README.md",
50 "src/node/index.js",
51 "src/node/bin",
52 "src/node/cli",
53 "src/node/examples",
54 "src/node/ext",
55 "src/node/health_check",
56 "src/node/interop",
57 "src/node/src",
58 "src/node/test",
59 "src/core",
60 "test/proto",
61 "include",
62 "grpc.gyp",
63 "binding.gyp"
64 ],
65 "main": "src/node/index.js",
66 "license": "BSD-3-Clause"
67}