blob: a6081ba4850e837c4f2502fede5aba15362d1958 [file] [log] [blame]
murgatroid99e5061512015-01-12 18:14:35 -08001{
2 "name": "grpc",
Nicolas "Pixel" Noble49bfb922016-07-12 09:31:41 +02003 "version": "1.1.0-dev",
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": {
murgatroid9918997432016-04-20 10:52:31 -070022 "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",
murgatroid992af89e42015-10-01 11:54:00 -070023 "test": "./node_modules/.bin/mocha src/node/test && npm run-script lint",
murgatroid99eaf79642016-11-01 11:05:02 -070024 "electron-build": "./node_modules/.bin/node-pre-gyp configure build --runtime=electron --disturl=https://atom.io/download/atom-shell",
murgatroid992af89e42015-10-01 11:54:00 -070025 "gen_docs": "./node_modules/.bin/jsdoc -c src/node/jsdoc_conf.json",
murgatroid997905a722016-01-15 15:28:22 -080026 "coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha src/node/test",
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 },
murgatroid99ab604b62016-02-11 12:59:37 -080029 "bundledDependencies": ["node-pre-gyp"],
murgatroid99e5061512015-01-12 18:14:35 -080030 "dependencies": {
murgatroid999a0c7412016-03-21 15:50:39 -070031 "arguejs": "^0.2.3",
murgatroid9955739d52015-06-03 10:58:21 -070032 "lodash": "^3.9.3",
murgatroid992b097832015-09-17 13:56:25 -070033 "nan": "^2.0.0",
murgatroid99d9c1fab2015-06-30 17:55:34 -070034 "protobufjs": "^4.0.0"
murgatroid99e5061512015-01-12 18:14:35 -080035 },
36 "devDependencies": {
murgatroid995e7a9fe2016-01-07 13:33:39 -080037 "async": "^1.5.0",
murgatroid99eaf79642016-11-01 11:05:02 -070038 "electron-mocha": "^3.1.1",
murgatroid99042e63c2015-02-24 17:02:09 -080039 "google-auth-library": "^0.9.2",
murgatroid99fcb52712016-07-29 10:44:01 -070040 "google-protobuf": "^3.0.0",
murgatroid99d7d83372015-09-30 11:00:23 -070041 "istanbul": "^0.3.21",
murgatroid9946f28602015-07-24 14:23:44 -070042 "jsdoc": "^3.3.2",
murgatroid993a982182015-03-04 11:28:06 -080043 "jshint": "^2.5.0",
murgatroid998c3ed002015-02-18 15:00:56 -080044 "minimist": "^1.1.0",
murgatroid9917e781a2016-01-04 15:24:53 -080045 "mocha": "^2.3.4",
murgatroid99a653e0f2015-10-22 14:25:56 -070046 "mocha-jenkins-reporter": "^0.1.9",
murgatroid99fb40b812015-11-24 17:21:40 -080047 "mustache": "^2.0.0",
48 "poisson-process": "^0.2.1"
murgatroid99cca5ffa2015-01-15 14:06:56 -080049 },
murgatroid993a982182015-03-04 11:28:06 -080050 "engines": {
murgatroid998c686e72016-02-10 10:59:22 -080051 "node": ">=0.12.0"
murgatroid993a982182015-03-04 11:28:06 -080052 },
murgatroid997905a722016-01-15 15:28:22 -080053 "binary": {
54 "module_name": "grpc_node",
55 "module_path": "./build/Release/",
murgatroid99f1e95522016-01-19 10:42:06 -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 },
murgatroid999ea2e3a2015-02-19 13:36:56 -080061 "files": [
murgatroid99be8d1da2015-02-25 16:29:54 -080062 "LICENSE",
murgatroid992af89e42015-10-01 11:54:00 -070063 "src/node/README.md",
murgatroid990bb6fcf2015-12-21 16:11:27 -080064 "src/proto",
murgatroid996d6009f2015-10-15 09:57:31 -070065 "etc",
murgatroid990bb6fcf2015-12-21 16:11:27 -080066 "src/node/index.js",
murgatroid998c0b4d72016-04-12 13:57:45 -070067 "src/node/src",
68 "src/node/ext",
69 "include/grpc",
70 "src/core",
murgatroid993b3069d2016-05-11 08:43:01 -070071 "src/boringssl",
72 "src/zlib",
murgatroid998c0b4d72016-04-12 13:57:45 -070073 "third_party/nanopb",
74 "third_party/zlib",
75 "third_party/boringssl",
murgatroid992af89e42015-10-01 11:54:00 -070076 "binding.gyp"
murgatroid999ea2e3a2015-02-19 13:36:56 -080077 ],
murgatroid992af89e42015-10-01 11:54:00 -070078 "main": "src/node/index.js",
murgatroid9918997432016-04-20 10:52:31 -070079 "license": "BSD-3-Clause",
80 "jshintConfig" : {
81 "bitwise": true,
82 "curly": true,
83 "eqeqeq": true,
84 "esnext": true,
85 "freeze": true,
86 "immed": true,
87 "indent": 2,
88 "latedef": "nofunc",
89 "maxlen": 80,
90 "mocha": true,
91 "newcap": true,
92 "node": true,
93 "noarg": true,
94 "quotmark": "single",
95 "strict": true,
96 "trailing": true,
97 "undef": true,
98 "unused": "vars"
99 }
murgatroid99e5061512015-01-12 18:14:35 -0800100}