{
  "name": "feathers-http-distributed",
  "description": "Distribute FeathersJS apps over the network with inter-service communication using HTTP protocol",
  "version": "1.1.0",
  "homepage": "https://github.com/dekelev/feathers-http-distributed",
  "main": "lib/",
  "keywords": [
    "feathers",
    "feathersjs",
    "distributed",
    "http",
    "docker",
    "kubernetes",
    "microservices"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/dekelev/feathers-http-distributed.git"
  },
  "author": {
    "name": "Dekel Barzilay",
    "email": "dekelev@gmail.com"
  },
  "contributors": [],
  "bugs": {
    "url": "https://github.com/dekelev/feathers-http-distributed/issues"
  },
  "engines": {
    "node": ">= 14"
  },
  "scripts": {
    "publish": "git push origin --tags && npm run changelog && git push origin",
    "release:patch": "npm version patch && npm publish",
    "release:minor": "npm version minor && npm publish",
    "release:major": "npm version major && npm publish",
    "changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
    "lint": "semistandard --fix lib/**/*.js test/**/*.js --config",
    "mocha": "nyc mocha",
    "coverage": "nyc report --reporter=text-lcov | coveralls",
    "test": "npm run lint && npm run mocha"
  },
  "directories": {
    "lib": "lib"
  },
  "dependencies": {
    "@feathersjs/errors": "^4.5.16",
    "axios": "^1.3.4",
    "axios-retry": "^3.4.0",
    "debug": "^4.3.4"
  },
  "devDependencies": {
    "@feathersjs/feathers": "^4.5.16",
    "axios-mock-adapter": "^1.21.2",
    "chai": "^4.3.7",
    "coveralls": "^3.1.1",
    "feathers-memory": "^4.1.0",
    "mocha": "^10.2.0",
    "nyc": "^15.1.0",
    "semistandard": "^16.0.1"
  },
  "semistandard": {
    "env": [
      "mocha"
    ]
  }
}
