blob: 11718b1ccbd407e2b86229b1496fa189c248a276 [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": {
murgatroid9918997432016-04-20 10:52:31 -070024 "lint": "node ./node_modules/jshint/bin/jshint src/node/src src/node/test src/node/interop src/node/index.js --exclude-path=src/node/.jshintignore",
murgatroid990bb6fcf2015-12-21 16:11:27 -080025 "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",
murgatroid99d354f112016-04-22 13:55:00 -070040 "google-protobuf": "^3.0.0-alpha.5",
murgatroid990bb6fcf2015-12-21 16:11:27 -080041 "istanbul": "^0.3.21",
42 "jsdoc": "^3.3.2",
43 "jshint": "^2.5.0",
44 "minimist": "^1.1.0",
murgatroid9917e781a2016-01-04 15:24:53 -080045 "mocha": "^2.3.4",
murgatroid990bb6fcf2015-12-21 16:11:27 -080046 "mocha-jenkins-reporter": "^0.1.9",
47 "mustache": "^2.0.0",
48 "poisson-process": "^0.2.1"
49 },
50 "engines": {
murgatroid998c686e72016-02-10 10:59:22 -080051 "node": ">=0.12.0"
murgatroid990bb6fcf2015-12-21 16:11:27 -080052 },
murgatroid997905a722016-01-15 15:28:22 -080053 "binary": {
54 "module_name": "grpc_node",
55 "module_path": "./build/Release/",
murgatroid99e190f352016-01-20 13:52:08 -080056 "host": "https://storage.googleapis.com/",
murgatroid99a3508e32016-01-20 13:58:24 -080057 "remote_path": "grpc-precompiled-binaries/node/{name}/v{version}",
murgatroid99e190f352016-01-20 13:52:08 -080058 "package_name": "{node_abi}-{platform}-{arch}.tar.gz",
59 "module_path": "src/node/extension_binary"
murgatroid997905a722016-01-15 15:28:22 -080060 },
murgatroid990bb6fcf2015-12-21 16:11:27 -080061 "files": [
62 "LICENSE",
63 "src/node/README.md",
64 "src/node/health_check",
65 "src/proto",
66 "etc",
murgatroid998c0b4d72016-04-12 13:57:45 -070067 "src/node/index.js",
68 "src/node/src",
69 "src/node/ext",
70 "include/grpc",
71 "src/core",
72 "third_party/nanopb",
73 "third_party/zlib",
74 "third_party/boringssl",
murgatroid990bb6fcf2015-12-21 16:11:27 -080075 "binding.gyp"
76 ],
77 "main": "src/node/index.js",
murgatroid9918997432016-04-20 10:52:31 -070078 "license": "BSD-3-Clause",
79 "jshintConfig" : {
80 "bitwise": true,
81 "curly": true,
82 "eqeqeq": true,
83 "esnext": true,
84 "freeze": true,
85 "immed": true,
86 "indent": 2,
87 "latedef": "nofunc",
88 "maxlen": 80,
89 "mocha": true,
90 "newcap": true,
91 "node": true,
92 "noarg": true,
93 "quotmark": "single",
94 "strict": true,
95 "trailing": true,
96 "undef": true,
97 "unused": "vars"
98 }
murgatroid990bb6fcf2015-12-21 16:11:27 -080099 }