blob: 5db270608b011259c34b15307496255c7e714130 [file] [log] [blame]
murgatroid990bb6fcf2015-12-21 16:11:27 -08001%YAML 1.2
2--- |
3 {
4 "name": "grpc",
murgatroid99b0162c42016-02-08 16:06:12 -08005 "version": "${settings.node_version}",
murgatroid990bb6fcf2015-12-21 16:11:27 -08006 "author": "Google Inc.",
7 "description": "gRPC Library for Node",
8 "homepage": "http://www.grpc.io/",
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/grpc/grpc.git"
12 },
13 "bugs": "https://github.com/grpc/grpc/issues",
14 "contributors": [
15 {
16 "name": "Michael Lumish",
17 "email": "mlumish@google.com"
18 }
19 ],
20 "directories": {
21 "lib": "src/node/src"
22 },
23 "scripts": {
24 "lint": "node ./node_modules/jshint/bin/jshint src/node/src src/node/test src/node/interop src/node/index.js",
25 "test": "./node_modules/.bin/mocha src/node/test && npm run-script lint",
26 "gen_docs": "./node_modules/.bin/jsdoc -c src/node/jsdoc_conf.json",
murgatroid99e190f352016-01-20 13:52:08 -080027 "coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha src/node/test",
murgatroid999ab6d0c2016-02-12 13:36:39 -080028 "install": "./node_modules/.bin/node-pre-gyp install --fallback-to-build"
murgatroid990bb6fcf2015-12-21 16:11:27 -080029 },
murgatroid99ab604b62016-02-11 12:59:37 -080030 "bundledDependencies": ["node-pre-gyp"],
murgatroid990bb6fcf2015-12-21 16:11:27 -080031 "dependencies": {
murgatroid999a0c7412016-03-21 15:50:39 -070032 "arguejs": "^0.2.3",
murgatroid990bb6fcf2015-12-21 16:11:27 -080033 "lodash": "^3.9.3",
34 "nan": "^2.0.0",
35 "protobufjs": "^4.0.0"
36 },
37 "devDependencies": {
murgatroid995e7a9fe2016-01-07 13:33:39 -080038 "async": "^1.5.0",
murgatroid990bb6fcf2015-12-21 16:11:27 -080039 "google-auth-library": "^0.9.2",
40 "istanbul": "^0.3.21",
41 "jsdoc": "^3.3.2",
42 "jshint": "^2.5.0",
43 "minimist": "^1.1.0",
murgatroid9917e781a2016-01-04 15:24:53 -080044 "mocha": "^2.3.4",
murgatroid990bb6fcf2015-12-21 16:11:27 -080045 "mocha-jenkins-reporter": "^0.1.9",
46 "mustache": "^2.0.0",
47 "poisson-process": "^0.2.1"
48 },
49 "engines": {
murgatroid998c686e72016-02-10 10:59:22 -080050 "node": ">=0.12.0"
murgatroid990bb6fcf2015-12-21 16:11:27 -080051 },
murgatroid997905a722016-01-15 15:28:22 -080052 "binary": {
53 "module_name": "grpc_node",
54 "module_path": "./build/Release/",
murgatroid99e190f352016-01-20 13:52:08 -080055 "host": "https://storage.googleapis.com/",
murgatroid99a3508e32016-01-20 13:58:24 -080056 "remote_path": "grpc-precompiled-binaries/node/{name}/v{version}",
murgatroid99e190f352016-01-20 13:52:08 -080057 "package_name": "{node_abi}-{platform}-{arch}.tar.gz",
58 "module_path": "src/node/extension_binary"
murgatroid997905a722016-01-15 15:28:22 -080059 },
murgatroid990bb6fcf2015-12-21 16:11:27 -080060 "files": [
61 "LICENSE",
62 "src/node/README.md",
63 "src/node/health_check",
64 "src/proto",
65 "etc",
murgatroid998c0b4d72016-04-12 13:57:45 -070066 "src/node/index.js",
67 "src/node/src",
68 "src/node/ext",
69 "include/grpc",
70 "src/core",
71 "third_party/nanopb",
72 "third_party/zlib",
73 "third_party/boringssl",
murgatroid990bb6fcf2015-12-21 16:11:27 -080074 "binding.gyp"
75 ],
76 "main": "src/node/index.js",
77 "license": "BSD-3-Clause"
78 }