blob: 99e8287b35713ae2cc6263d964ed4a8cae97a0f7 [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": {
murgatroid990bb6fcf2015-12-21 16:11:27 -080032 "lodash": "^3.9.3",
33 "nan": "^2.0.0",
34 "protobufjs": "^4.0.0"
35 },
36 "devDependencies": {
murgatroid995e7a9fe2016-01-07 13:33:39 -080037 "async": "^1.5.0",
murgatroid990bb6fcf2015-12-21 16:11:27 -080038 "google-auth-library": "^0.9.2",
39 "istanbul": "^0.3.21",
40 "jsdoc": "^3.3.2",
41 "jshint": "^2.5.0",
42 "minimist": "^1.1.0",
murgatroid9917e781a2016-01-04 15:24:53 -080043 "mocha": "^2.3.4",
murgatroid990bb6fcf2015-12-21 16:11:27 -080044 "mocha-jenkins-reporter": "^0.1.9",
45 "mustache": "^2.0.0",
46 "poisson-process": "^0.2.1"
47 },
48 "engines": {
murgatroid998c686e72016-02-10 10:59:22 -080049 "node": ">=0.12.0"
murgatroid990bb6fcf2015-12-21 16:11:27 -080050 },
murgatroid997905a722016-01-15 15:28:22 -080051 "binary": {
52 "module_name": "grpc_node",
53 "module_path": "./build/Release/",
murgatroid99e190f352016-01-20 13:52:08 -080054 "host": "https://storage.googleapis.com/",
murgatroid99a3508e32016-01-20 13:58:24 -080055 "remote_path": "grpc-precompiled-binaries/node/{name}/v{version}",
murgatroid99e190f352016-01-20 13:52:08 -080056 "package_name": "{node_abi}-{platform}-{arch}.tar.gz",
57 "module_path": "src/node/extension_binary"
murgatroid997905a722016-01-15 15:28:22 -080058 },
murgatroid990bb6fcf2015-12-21 16:11:27 -080059 "files": [
60 "LICENSE",
61 "src/node/README.md",
62 "src/node/health_check",
63 "src/proto",
64 "etc",
65 % for module in node_modules:
66 % for file in module.headers + module.src + module.js:
67 "${file}",
68 % endfor
69 % for dep in module.transitive_deps:
70 % for lib in libs:
71 % if lib.name == dep:
Sree Kuchibhotlafa40cde2016-01-14 17:14:48 -080072 % for file in lib.get('public_headers', []) + lib.headers + lib.src:
murgatroid990bb6fcf2015-12-21 16:11:27 -080073 "${file}",
74 % endfor
75 % endif
76 % endfor
77 % endfor
78 % endfor
79 "binding.gyp"
80 ],
81 "main": "src/node/index.js",
82 "license": "BSD-3-Clause"
83 }