{
  "name": "mali",
  "version": "0.47.1",
  "description": "Minimalistic gRPC microservice framework",
  "main": "lib/app.js",
  "scripts": {
    "lint": "standard --ext lib/*.js test/*.js | snazzy",
    "linttest": "npm run lint && ava -v",
    "test": "nyc npm run linttest",
    "coverage": "nyc report --reporter=text-lcov > ./coverage/lcov.info",
    "apidocs": "jsdoc2md lib/*.js >  api2.md",
    "docs": "jsdoc2md lib/*.js --heading-depth 3 | ./fixdocs > api.md",
    "benchmark": "node test/benchmark.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/malijs/mali.git"
  },
  "author": {
    "name": "Bojan D.",
    "email": "dbojan@gmail.com"
  },
  "contributors": [
    {
      "name": "Yagiz Nizipli",
      "email": "yagiz@nizipli.com"
    }
  ],
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/malijs/mali/issues"
  },
  "homepage": "https://mali.js.org",
  "keywords": [
    "mali",
    "grpc",
    "service",
    "server",
    "microservice"
  ],
  "dependencies": {
    "@malijs/call-types": "~0.4.0",
    "@malijs/compose": "^1.3.2",
    "delegates": "^1.0.0",
    "destroy": "^1.2.0",
    "ee-first": "^1.1.1",
    "lodash.camelcase": "^4.3.0",
    "lodash.pull": "^4.1.0"
  },
  "peerDependencies": {
    "@grpc/grpc-js": "^1.6.10",
    "@grpc/proto-loader": "^0.3.0 || ^0.4.0 || ^0.5.0 || ^0.6.0 || ^0.7.0"
  },
  "devDependencies": {
    "@grpc/grpc-js": "^1.6.10",
    "@grpc/proto-loader": "^0.7.0",
    "async": "^3.2.4",
    "ava": "^3.15.0",
    "benchmarkify": "^3.0.0",
    "google-protobuf": "^3.21.0",
    "highland": "3.0.0-beta.10",
    "is-ci": "^3.0.1",
    "jsdoc-to-markdown": "^7.1.1",
    "lodash": "^4.17.21",
    "nyc": "^15.1.0",
    "snazzy": "^9.0.0",
    "standard": "^17.0.0",
    "test-console": "^2.0.0"
  },
  "engines": {
    "node": ">=14"
  },
  "standard": {
    "ignore": [
      "test/protos/*.*",
      "test/static/*.*"
    ]
  },
  "directories": {
    "test": "test"
  },
  "files": [
    "lib",
    "index.d.ts"
  ],
  "ava": {
    "files": [
      "test/*.test.js"
    ]
  },
  "types": "index.d.ts",
  "nyc": {
    "include": [
      "lib/*.js"
    ]
  },
  "publishConfig": {
    "access": "public",
    "tag": "latest"
  }
}