blob: 4074bd6a2ec5807c18eb8fabd95612c41bdee254 [file] [log] [blame]
murgatroid99e5061512015-01-12 18:14:35 -08001{
2 "name": "grpc",
murgatroid99f37a90c2015-11-19 13:38:35 -08003 "version": "0.12.0",
murgatroid99be8d1da2015-02-25 16:29:54 -08004 "author": "Google Inc.",
murgatroid99e5061512015-01-12 18:14:35 -08005 "description": "gRPC Library for Node",
murgatroid99c8330f82015-02-26 18:21:48 -08006 "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",
murgatroid99be8d1da2015-02-25 16:29:54 -080012 "contributors": [
13 {
14 "name": "Michael Lumish",
15 "email": "mlumish@google.com"
16 }
17 ],
murgatroid99c8330f82015-02-26 18:21:48 -080018 "directories": {
murgatroid992af89e42015-10-01 11:54:00 -070019 "lib": "src/node/src"
murgatroid99c8330f82015-02-26 18:21:48 -080020 },
murgatroid99e5061512015-01-12 18:14:35 -080021 "scripts": {
murgatroid99fd994f12015-10-09 14:02:28 -070022 "lint": "node ./node_modules/jshint/bin/jshint src/node/src src/node/test src/node/interop src/node/index.js",
murgatroid992af89e42015-10-01 11:54:00 -070023 "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",
murgatroid997905a722016-01-15 15:28:22 -080025 "coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha src/node/test",
26 "preinstall": "npm install node-pre-gyp",
murgatroid99e190f352016-01-20 13:52:08 -080027 "install": "./node_modules/.bin/node-pre-gyp install --fallback-to-build"
murgatroid99e5061512015-01-12 18:14:35 -080028 },
29 "dependencies": {
murgatroid9955739d52015-06-03 10:58:21 -070030 "lodash": "^3.9.3",
murgatroid992b097832015-09-17 13:56:25 -070031 "nan": "^2.0.0",
murgatroid997905a722016-01-15 15:28:22 -080032 "node-pre-gyp": "^0.6.19",
murgatroid99d9c1fab2015-06-30 17:55:34 -070033 "protobufjs": "^4.0.0"
murgatroid99e5061512015-01-12 18:14:35 -080034 },
35 "devDependencies": {
murgatroid995e7a9fe2016-01-07 13:33:39 -080036 "async": "^1.5.0",
murgatroid99042e63c2015-02-24 17:02:09 -080037 "google-auth-library": "^0.9.2",
murgatroid99d7d83372015-09-30 11:00:23 -070038 "istanbul": "^0.3.21",
murgatroid9946f28602015-07-24 14:23:44 -070039 "jsdoc": "^3.3.2",
murgatroid993a982182015-03-04 11:28:06 -080040 "jshint": "^2.5.0",
murgatroid998c3ed002015-02-18 15:00:56 -080041 "minimist": "^1.1.0",
murgatroid9917e781a2016-01-04 15:24:53 -080042 "mocha": "^2.3.4",
murgatroid99a653e0f2015-10-22 14:25:56 -070043 "mocha-jenkins-reporter": "^0.1.9",
murgatroid99fb40b812015-11-24 17:21:40 -080044 "mustache": "^2.0.0",
45 "poisson-process": "^0.2.1"
murgatroid99cca5ffa2015-01-15 14:06:56 -080046 },
murgatroid993a982182015-03-04 11:28:06 -080047 "engines": {
murgatroid99a686ffc2015-03-04 14:54:32 -080048 "node": ">=0.10.13"
murgatroid993a982182015-03-04 11:28:06 -080049 },
murgatroid997905a722016-01-15 15:28:22 -080050 "binary": {
51 "module_name": "grpc_node",
52 "module_path": "./build/Release/",
murgatroid99f1e95522016-01-19 10:42:06 -080053 "host": "https://storage.googleapis.com/",
murgatroid99a3508e32016-01-20 13:58:24 -080054 "remote_path": "grpc-precompiled-binaries/node/{name}/v{version}",
murgatroid99e190f352016-01-20 13:52:08 -080055 "package_name": "{node_abi}-{platform}-{arch}.tar.gz",
56 "module_path": "src/node/extension_binary"
murgatroid997905a722016-01-15 15:28:22 -080057 },
murgatroid999ea2e3a2015-02-19 13:36:56 -080058 "files": [
murgatroid99be8d1da2015-02-25 16:29:54 -080059 "LICENSE",
murgatroid992af89e42015-10-01 11:54:00 -070060 "src/node/README.md",
murgatroid992af89e42015-10-01 11:54:00 -070061 "src/node/health_check",
murgatroid990bb6fcf2015-12-21 16:11:27 -080062 "src/proto",
murgatroid996d6009f2015-10-15 09:57:31 -070063 "etc",
murgatroid990bb6fcf2015-12-21 16:11:27 -080064 "src/node/ext/byte_buffer.h",
65 "src/node/ext/call.h",
66 "src/node/ext/call_credentials.h",
67 "src/node/ext/channel.h",
68 "src/node/ext/channel_credentials.h",
69 "src/node/ext/completion_queue_async_worker.h",
70 "src/node/ext/server.h",
71 "src/node/ext/server_credentials.h",
72 "src/node/ext/timeval.h",
73 "src/node/ext/byte_buffer.cc",
74 "src/node/ext/call.cc",
75 "src/node/ext/call_credentials.cc",
76 "src/node/ext/channel.cc",
77 "src/node/ext/channel_credentials.cc",
78 "src/node/ext/completion_queue_async_worker.cc",
79 "src/node/ext/node_grpc.cc",
80 "src/node/ext/server.cc",
81 "src/node/ext/server_credentials.cc",
82 "src/node/ext/timeval.cc",
83 "src/node/index.js",
84 "src/node/src/client.js",
85 "src/node/src/common.js",
86 "src/node/src/credentials.js",
87 "src/node/src/metadata.js",
88 "src/node/src/server.js",
89 "include/grpc/grpc_security.h",
90 "include/grpc/byte_buffer.h",
91 "include/grpc/byte_buffer_reader.h",
92 "include/grpc/compression.h",
93 "include/grpc/grpc.h",
94 "include/grpc/status.h",
95 "include/grpc/census.h",
96 "src/core/security/auth_filters.h",
97 "src/core/security/base64.h",
98 "src/core/security/credentials.h",
99 "src/core/security/handshake.h",
100 "src/core/security/json_token.h",
101 "src/core/security/jwt_verifier.h",
102 "src/core/security/secure_endpoint.h",
103 "src/core/security/security_connector.h",
104 "src/core/security/security_context.h",
105 "src/core/tsi/fake_transport_security.h",
106 "src/core/tsi/ssl_transport_security.h",
murgatroid998b791a42016-01-08 12:33:22 -0800107 "src/core/tsi/ssl_types.h",
murgatroid990bb6fcf2015-12-21 16:11:27 -0800108 "src/core/tsi/transport_security.h",
109 "src/core/tsi/transport_security_interface.h",
110 "src/core/census/grpc_filter.h",
111 "src/core/channel/channel_args.h",
112 "src/core/channel/channel_stack.h",
113 "src/core/channel/client_channel.h",
114 "src/core/channel/client_uchannel.h",
115 "src/core/channel/compress_filter.h",
116 "src/core/channel/connected_channel.h",
117 "src/core/channel/context.h",
118 "src/core/channel/http_client_filter.h",
119 "src/core/channel/http_server_filter.h",
120 "src/core/channel/subchannel_call_holder.h",
121 "src/core/client_config/client_config.h",
122 "src/core/client_config/connector.h",
123 "src/core/client_config/initial_connect_string.h",
124 "src/core/client_config/lb_policies/pick_first.h",
125 "src/core/client_config/lb_policies/round_robin.h",
126 "src/core/client_config/lb_policy.h",
127 "src/core/client_config/lb_policy_factory.h",
128 "src/core/client_config/lb_policy_registry.h",
129 "src/core/client_config/resolver.h",
130 "src/core/client_config/resolver_factory.h",
131 "src/core/client_config/resolver_registry.h",
132 "src/core/client_config/resolvers/dns_resolver.h",
133 "src/core/client_config/resolvers/sockaddr_resolver.h",
134 "src/core/client_config/subchannel.h",
135 "src/core/client_config/subchannel_factory.h",
136 "src/core/client_config/uri_parser.h",
137 "src/core/compression/algorithm_metadata.h",
138 "src/core/compression/message_compress.h",
139 "src/core/debug/trace.h",
140 "src/core/httpcli/format_request.h",
141 "src/core/httpcli/httpcli.h",
142 "src/core/httpcli/parser.h",
143 "src/core/iomgr/closure.h",
144 "src/core/iomgr/endpoint.h",
145 "src/core/iomgr/endpoint_pair.h",
146 "src/core/iomgr/exec_ctx.h",
147 "src/core/iomgr/executor.h",
148 "src/core/iomgr/fd_posix.h",
149 "src/core/iomgr/iocp_windows.h",
150 "src/core/iomgr/iomgr.h",
151 "src/core/iomgr/iomgr_internal.h",
152 "src/core/iomgr/iomgr_posix.h",
153 "src/core/iomgr/pollset.h",
154 "src/core/iomgr/pollset_posix.h",
155 "src/core/iomgr/pollset_set.h",
156 "src/core/iomgr/pollset_set_posix.h",
157 "src/core/iomgr/pollset_set_windows.h",
158 "src/core/iomgr/pollset_windows.h",
159 "src/core/iomgr/resolve_address.h",
160 "src/core/iomgr/sockaddr.h",
161 "src/core/iomgr/sockaddr_posix.h",
162 "src/core/iomgr/sockaddr_utils.h",
163 "src/core/iomgr/sockaddr_win32.h",
164 "src/core/iomgr/socket_utils_posix.h",
165 "src/core/iomgr/socket_windows.h",
166 "src/core/iomgr/tcp_client.h",
167 "src/core/iomgr/tcp_posix.h",
168 "src/core/iomgr/tcp_server.h",
169 "src/core/iomgr/tcp_windows.h",
170 "src/core/iomgr/time_averaged_stats.h",
171 "src/core/iomgr/timer.h",
172 "src/core/iomgr/timer_heap.h",
173 "src/core/iomgr/timer_internal.h",
174 "src/core/iomgr/udp_server.h",
175 "src/core/iomgr/wakeup_fd_pipe.h",
176 "src/core/iomgr/wakeup_fd_posix.h",
177 "src/core/iomgr/workqueue.h",
178 "src/core/iomgr/workqueue_posix.h",
179 "src/core/iomgr/workqueue_windows.h",
180 "src/core/json/json.h",
181 "src/core/json/json_common.h",
182 "src/core/json/json_reader.h",
183 "src/core/json/json_writer.h",
184 "src/core/statistics/census_interface.h",
185 "src/core/statistics/census_rpc_stats.h",
186 "src/core/surface/api_trace.h",
187 "src/core/surface/call.h",
188 "src/core/surface/call_test_only.h",
189 "src/core/surface/channel.h",
190 "src/core/surface/completion_queue.h",
191 "src/core/surface/event_string.h",
192 "src/core/surface/init.h",
193 "src/core/surface/server.h",
194 "src/core/surface/surface_trace.h",
195 "src/core/transport/byte_stream.h",
196 "src/core/transport/chttp2/alpn.h",
197 "src/core/transport/chttp2/bin_encoder.h",
198 "src/core/transport/chttp2/frame.h",
199 "src/core/transport/chttp2/frame_data.h",
200 "src/core/transport/chttp2/frame_goaway.h",
201 "src/core/transport/chttp2/frame_ping.h",
202 "src/core/transport/chttp2/frame_rst_stream.h",
203 "src/core/transport/chttp2/frame_settings.h",
204 "src/core/transport/chttp2/frame_window_update.h",
205 "src/core/transport/chttp2/hpack_encoder.h",
206 "src/core/transport/chttp2/hpack_parser.h",
207 "src/core/transport/chttp2/hpack_table.h",
208 "src/core/transport/chttp2/http2_errors.h",
209 "src/core/transport/chttp2/huffsyms.h",
210 "src/core/transport/chttp2/incoming_metadata.h",
211 "src/core/transport/chttp2/internal.h",
212 "src/core/transport/chttp2/status_conversion.h",
213 "src/core/transport/chttp2/stream_map.h",
214 "src/core/transport/chttp2/timeout_encoding.h",
215 "src/core/transport/chttp2/varint.h",
216 "src/core/transport/chttp2_transport.h",
217 "src/core/transport/connectivity_state.h",
218 "src/core/transport/metadata.h",
219 "src/core/transport/metadata_batch.h",
220 "src/core/transport/static_metadata.h",
221 "src/core/transport/transport.h",
222 "src/core/transport/transport_impl.h",
223 "src/core/census/aggregation.h",
224 "src/core/census/context.h",
225 "src/core/census/rpc_metric_id.h",
226 "src/core/httpcli/httpcli_security_connector.c",
227 "src/core/security/base64.c",
228 "src/core/security/client_auth_filter.c",
229 "src/core/security/credentials.c",
230 "src/core/security/credentials_metadata.c",
231 "src/core/security/credentials_posix.c",
232 "src/core/security/credentials_win32.c",
233 "src/core/security/google_default_credentials.c",
234 "src/core/security/handshake.c",
235 "src/core/security/json_token.c",
236 "src/core/security/jwt_verifier.c",
237 "src/core/security/secure_endpoint.c",
238 "src/core/security/security_connector.c",
239 "src/core/security/security_context.c",
240 "src/core/security/server_auth_filter.c",
241 "src/core/security/server_secure_chttp2.c",
242 "src/core/surface/init_secure.c",
243 "src/core/surface/secure_channel_create.c",
244 "src/core/tsi/fake_transport_security.c",
245 "src/core/tsi/ssl_transport_security.c",
246 "src/core/tsi/transport_security.c",
247 "src/core/census/grpc_context.c",
248 "src/core/census/grpc_filter.c",
249 "src/core/channel/channel_args.c",
250 "src/core/channel/channel_stack.c",
251 "src/core/channel/client_channel.c",
252 "src/core/channel/client_uchannel.c",
253 "src/core/channel/compress_filter.c",
254 "src/core/channel/connected_channel.c",
255 "src/core/channel/http_client_filter.c",
256 "src/core/channel/http_server_filter.c",
257 "src/core/channel/subchannel_call_holder.c",
258 "src/core/client_config/client_config.c",
259 "src/core/client_config/connector.c",
260 "src/core/client_config/default_initial_connect_string.c",
261 "src/core/client_config/initial_connect_string.c",
262 "src/core/client_config/lb_policies/pick_first.c",
263 "src/core/client_config/lb_policies/round_robin.c",
264 "src/core/client_config/lb_policy.c",
265 "src/core/client_config/lb_policy_factory.c",
266 "src/core/client_config/lb_policy_registry.c",
267 "src/core/client_config/resolver.c",
268 "src/core/client_config/resolver_factory.c",
269 "src/core/client_config/resolver_registry.c",
270 "src/core/client_config/resolvers/dns_resolver.c",
271 "src/core/client_config/resolvers/sockaddr_resolver.c",
272 "src/core/client_config/subchannel.c",
273 "src/core/client_config/subchannel_factory.c",
274 "src/core/client_config/uri_parser.c",
275 "src/core/compression/algorithm.c",
276 "src/core/compression/message_compress.c",
277 "src/core/debug/trace.c",
278 "src/core/httpcli/format_request.c",
279 "src/core/httpcli/httpcli.c",
280 "src/core/httpcli/parser.c",
281 "src/core/iomgr/closure.c",
282 "src/core/iomgr/endpoint.c",
283 "src/core/iomgr/endpoint_pair_posix.c",
284 "src/core/iomgr/endpoint_pair_windows.c",
285 "src/core/iomgr/exec_ctx.c",
286 "src/core/iomgr/executor.c",
287 "src/core/iomgr/fd_posix.c",
288 "src/core/iomgr/iocp_windows.c",
289 "src/core/iomgr/iomgr.c",
290 "src/core/iomgr/iomgr_posix.c",
291 "src/core/iomgr/iomgr_windows.c",
292 "src/core/iomgr/pollset_multipoller_with_epoll.c",
293 "src/core/iomgr/pollset_multipoller_with_poll_posix.c",
294 "src/core/iomgr/pollset_posix.c",
295 "src/core/iomgr/pollset_set_posix.c",
296 "src/core/iomgr/pollset_set_windows.c",
297 "src/core/iomgr/pollset_windows.c",
298 "src/core/iomgr/resolve_address_posix.c",
299 "src/core/iomgr/resolve_address_windows.c",
300 "src/core/iomgr/sockaddr_utils.c",
301 "src/core/iomgr/socket_utils_common_posix.c",
302 "src/core/iomgr/socket_utils_linux.c",
303 "src/core/iomgr/socket_utils_posix.c",
304 "src/core/iomgr/socket_windows.c",
305 "src/core/iomgr/tcp_client_posix.c",
306 "src/core/iomgr/tcp_client_windows.c",
307 "src/core/iomgr/tcp_posix.c",
308 "src/core/iomgr/tcp_server_posix.c",
309 "src/core/iomgr/tcp_server_windows.c",
310 "src/core/iomgr/tcp_windows.c",
311 "src/core/iomgr/time_averaged_stats.c",
312 "src/core/iomgr/timer.c",
313 "src/core/iomgr/timer_heap.c",
314 "src/core/iomgr/udp_server.c",
315 "src/core/iomgr/wakeup_fd_eventfd.c",
316 "src/core/iomgr/wakeup_fd_nospecial.c",
317 "src/core/iomgr/wakeup_fd_pipe.c",
318 "src/core/iomgr/wakeup_fd_posix.c",
319 "src/core/iomgr/workqueue_posix.c",
320 "src/core/iomgr/workqueue_windows.c",
321 "src/core/json/json.c",
322 "src/core/json/json_reader.c",
323 "src/core/json/json_string.c",
324 "src/core/json/json_writer.c",
325 "src/core/surface/api_trace.c",
326 "src/core/surface/byte_buffer.c",
327 "src/core/surface/byte_buffer_reader.c",
328 "src/core/surface/call.c",
329 "src/core/surface/call_details.c",
330 "src/core/surface/call_log_batch.c",
331 "src/core/surface/channel.c",
332 "src/core/surface/channel_connectivity.c",
333 "src/core/surface/channel_create.c",
334 "src/core/surface/channel_ping.c",
335 "src/core/surface/completion_queue.c",
336 "src/core/surface/event_string.c",
337 "src/core/surface/init.c",
338 "src/core/surface/lame_client.c",
339 "src/core/surface/metadata_array.c",
340 "src/core/surface/server.c",
341 "src/core/surface/server_chttp2.c",
342 "src/core/surface/server_create.c",
murgatroid99c3910ca2016-01-06 13:14:23 -0800343 "src/core/surface/validate_metadata.c",
murgatroid990bb6fcf2015-12-21 16:11:27 -0800344 "src/core/surface/version.c",
345 "src/core/transport/byte_stream.c",
346 "src/core/transport/chttp2/alpn.c",
347 "src/core/transport/chttp2/bin_encoder.c",
348 "src/core/transport/chttp2/frame_data.c",
349 "src/core/transport/chttp2/frame_goaway.c",
350 "src/core/transport/chttp2/frame_ping.c",
351 "src/core/transport/chttp2/frame_rst_stream.c",
352 "src/core/transport/chttp2/frame_settings.c",
353 "src/core/transport/chttp2/frame_window_update.c",
354 "src/core/transport/chttp2/hpack_encoder.c",
355 "src/core/transport/chttp2/hpack_parser.c",
356 "src/core/transport/chttp2/hpack_table.c",
357 "src/core/transport/chttp2/huffsyms.c",
358 "src/core/transport/chttp2/incoming_metadata.c",
359 "src/core/transport/chttp2/parsing.c",
360 "src/core/transport/chttp2/status_conversion.c",
361 "src/core/transport/chttp2/stream_lists.c",
362 "src/core/transport/chttp2/stream_map.c",
363 "src/core/transport/chttp2/timeout_encoding.c",
364 "src/core/transport/chttp2/varint.c",
365 "src/core/transport/chttp2/writing.c",
366 "src/core/transport/chttp2_transport.c",
367 "src/core/transport/connectivity_state.c",
368 "src/core/transport/metadata.c",
369 "src/core/transport/metadata_batch.c",
370 "src/core/transport/static_metadata.c",
371 "src/core/transport/transport.c",
372 "src/core/transport/transport_op_string.c",
373 "src/core/census/context.c",
374 "src/core/census/initialize.c",
375 "src/core/census/operation.c",
376 "src/core/census/tracing.c",
377 "include/grpc/support/alloc.h",
378 "include/grpc/support/atm.h",
379 "include/grpc/support/atm_gcc_atomic.h",
380 "include/grpc/support/atm_gcc_sync.h",
381 "include/grpc/support/atm_win32.h",
382 "include/grpc/support/avl.h",
383 "include/grpc/support/cmdline.h",
384 "include/grpc/support/cpu.h",
385 "include/grpc/support/histogram.h",
386 "include/grpc/support/host_port.h",
387 "include/grpc/support/log.h",
388 "include/grpc/support/log_win32.h",
389 "include/grpc/support/port_platform.h",
390 "include/grpc/support/slice.h",
391 "include/grpc/support/slice_buffer.h",
392 "include/grpc/support/string_util.h",
393 "include/grpc/support/subprocess.h",
394 "include/grpc/support/sync.h",
395 "include/grpc/support/sync_generic.h",
396 "include/grpc/support/sync_posix.h",
397 "include/grpc/support/sync_win32.h",
398 "include/grpc/support/thd.h",
399 "include/grpc/support/time.h",
400 "include/grpc/support/tls.h",
401 "include/grpc/support/tls_gcc.h",
402 "include/grpc/support/tls_msvc.h",
403 "include/grpc/support/tls_pthread.h",
404 "include/grpc/support/useful.h",
405 "src/core/profiling/timers.h",
406 "src/core/support/block_annotate.h",
407 "src/core/support/env.h",
408 "src/core/support/file.h",
409 "src/core/support/murmur_hash.h",
410 "src/core/support/stack_lockfree.h",
411 "src/core/support/string.h",
412 "src/core/support/string_win32.h",
413 "src/core/support/thd_internal.h",
414 "src/core/support/time_precise.h",
415 "src/core/profiling/basic_timers.c",
416 "src/core/profiling/stap_timers.c",
417 "src/core/support/alloc.c",
418 "src/core/support/avl.c",
419 "src/core/support/cmdline.c",
420 "src/core/support/cpu_iphone.c",
421 "src/core/support/cpu_linux.c",
422 "src/core/support/cpu_posix.c",
423 "src/core/support/cpu_windows.c",
424 "src/core/support/env_linux.c",
425 "src/core/support/env_posix.c",
426 "src/core/support/env_win32.c",
427 "src/core/support/file.c",
428 "src/core/support/file_posix.c",
429 "src/core/support/file_win32.c",
430 "src/core/support/histogram.c",
431 "src/core/support/host_port.c",
432 "src/core/support/log.c",
433 "src/core/support/log_android.c",
434 "src/core/support/log_linux.c",
435 "src/core/support/log_posix.c",
436 "src/core/support/log_win32.c",
437 "src/core/support/murmur_hash.c",
438 "src/core/support/slice.c",
439 "src/core/support/slice_buffer.c",
440 "src/core/support/stack_lockfree.c",
441 "src/core/support/string.c",
442 "src/core/support/string_posix.c",
443 "src/core/support/string_win32.c",
444 "src/core/support/subprocess_posix.c",
445 "src/core/support/sync.c",
446 "src/core/support/sync_posix.c",
447 "src/core/support/sync_win32.c",
448 "src/core/support/thd.c",
449 "src/core/support/thd_posix.c",
450 "src/core/support/thd_win32.c",
451 "src/core/support/time.c",
452 "src/core/support/time_posix.c",
453 "src/core/support/time_precise.c",
454 "src/core/support/time_win32.c",
455 "src/core/support/tls_pthread.c",
murgatroid992af89e42015-10-01 11:54:00 -0700456 "binding.gyp"
murgatroid999ea2e3a2015-02-19 13:36:56 -0800457 ],
murgatroid992af89e42015-10-01 11:54:00 -0700458 "main": "src/node/index.js",
murgatroid99be8d1da2015-02-25 16:29:54 -0800459 "license": "BSD-3-Clause"
murgatroid99e5061512015-01-12 18:14:35 -0800460}