Skip to content
Snippets Groups Projects
package.json 2.75 KiB
Newer Older
{
  "name": "grpc",
  "version": "1.5.0-dev",
  "description": "gRPC Library for Node",
  "repository": {
    "type": "git",
    "url": "https://github.com/grpc/grpc.git"
  },
  "bugs": "https://github.com/grpc/grpc/issues",
  "contributors": [
    {
      "name": "Michael Lumish",
      "email": "mlumish@google.com"
    }
  ],
  "scripts": {
    "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",
    "test": "./node_modules/.bin/mocha src/node/test && npm run-script lint",
    "electron-build": "./node_modules/.bin/node-pre-gyp configure build --runtime=electron --disturl=https://atom.io/download/atom-shell",
    "gen_docs": "./node_modules/.bin/jsdoc -c src/node/jsdoc_conf.json",
    "coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha src/node/test",
    "install": "./node_modules/.bin/node-pre-gyp install --fallback-to-build --library=static_library"
  "bundledDependencies": [
    "node-pre-gyp"
  ],
  "dependencies": {
murgatroid99's avatar
murgatroid99 committed
    "nan": "^2.0.0",
  },
  "devDependencies": {
  "binary": {
    "module_name": "grpc_node",
    "module_path": "src/node/extension_binary/{node_abi}-{platform}-{arch}",
    "host": "https://storage.googleapis.com/",
    "remote_path": "grpc-precompiled-binaries/node/{name}/v{version}",
    "package_name": "{node_abi}-{platform}-{arch}.tar.gz"
  "files": [
    "src/node/index.js",
    "src/node/src",
    "src/node/ext",
    "include/grpc",
    "src/core",
    "src/boringssl",
    "src/zlib",
    "third_party/nanopb",
    "third_party/zlib",
    "third_party/boringssl",
  "license": "Apache-2.0",
    "bitwise": true,
    "curly": true,
    "eqeqeq": true,
    "esnext": true,
    "freeze": true,
    "immed": true,
    "indent": 2,
    "latedef": "nofunc",
    "maxlen": 80,
    "mocha": true,
    "newcap": true,
    "node": true,
    "noarg": true,
    "quotmark": "single",
    "strict": true,
    "trailing": true,
    "undef": true,
    "unused": "vars"
  }