{
  "name": "cluster-service",
  "version": "2.1.4",
  "author": {
    "name": "Aaron Silvas",
    "email": "asilvas@godaddy.com"
  },
  "description": "Turns your single process code into a fault-resilient multi-process service with built-in REST & CLI support",
  "main": "./cluster-service.js",
  "scripts": {
    "start": "node scripts/start.js",
    "lint": "npm run-script lint-src && npm run-script lint-test",
    "lint-src": "jshint bin lib cluster-service.js",
    "lint-test": "jshint --config .test-jshintrc test",
    "cover": "nyc mocha --ui bdd -R spec -t 5000",
    "test-devel": "mocha bdd -R spec -t 5000 test/*.js test/workers/*.js",
    "test": "npm run-script lint && npm run-script cover"
  },
  "dependencies": {
    "async": "^3.2.0",
    "colors": "^1.4.0",
    "extend": "^3.0.2",
    "minimist": "^1.2.5"
  },
  "devDependencies": {
    "jshint": "^2.12.0",
    "mocha": "^5.2.0",
    "nyc": "^15.1.0",
    "request": "^2.88.2",
    "sinon": "^7.5.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/godaddy/node-cluster-service.git"
  },
  "license": "MIT",
  "homepage": "https://github.com/godaddy/node-cluster-service",
  "bugs": {
    "url": "https://github.com/godaddy/node-cluster-service/issues"
  },
  "bin": {
    "cluster-service": "./bin/cservice",
    "cservice": "./bin/cservice",
    "cserviced": "./bin/cserviced"
  },
  "engines": {
    "node": ">=6"
  },
  "keywords": [
    "cluster",
    "service",
    "ha",
    "high availability",
    "cli",
    "remote access",
    "multi process",
    "master",
    "child",
    "process",
    "monitor",
    "monitoring",
    "continous integration",
    "healthcheck",
    "heartbeat",
    "health check",
    "heart beat",
    "REST",
    "resilient"
  ]
}
