{
  "name": "node-red-contrib-self-healing",
  "version": "0.9.4",
  "description": "SHEN: Self-healing extensions for Node-RED.",
  "keywords": [
    "node-red",
    "self-healing",
    "fault-tolerance",
    "dependability"
  ],
  "homepage": "http://jpdias.me/node-red-contrib-self-healing/",
  "bugs": "https://github.com/jpdias/node-red-contrib-self-healing/issues",
  "repository": {
    "type": "git",
    "url": "https://github.com/jpdias/node-red-contrib-self-healing.git"
  },
  "scripts": {
    "start": "node-red",
    "test": "mocha \"test/**/*_spec.js\"",
    "test-accept": "mocha \"test-acceptance/**/*_spec.js\"",
    "test-coverage": "nyc mocha \"test/**/*_spec.js\"",
    "test-pbt": "mocha \"test-pbt/**/*_spec.js\"",
    "mocha": "mocha",
    "lint": "eslint --ignore-path .gitignore .",
    "format": "prettier --write --ignore-path .gitignore .",
    "format-check": "prettier --check --ignore-path .gitignore .",
    "mutate-init": "stryker init",
    "mutate": "stryker run",
    "selenium-server": "docker-compose up",
    "selenium-test": "docker exec -it nodered npm run test-accept"
  },
  "node-red": {
    "version": ">=2.0.0",
    "nodes": {
      "flow-control": "flow-control/flow-control.js",
      "replication-voter": "replication-voter/replication-voter.js",
      "compensate": "compensate/compensate.js",
      "kalman-noise-filter": "kalman-noise-filter/kalman.js",
      "threshold-check": "threshold-check/threshold-check.js",
      "redundancy-manager": "redundancy/redundancy.js",
      "debounce": "debounce/debounce.js",
      "network-aware": "network-aware/network-aware.js",
      "heartbeat": "heartbeat/heartbeat.js",
      "timing": "timing-check/timing.js",
      "readings-watcher": "readings-watcher/readings-watcher.js",
      "balancing": "balancing/balancing.js",
      "checkpoint": "checkpoint/checkpoint.js",
      "resource-monitor": "resource-monitor/resource-monitor.js",
      "device-registry": "device-registry/device-registry.js",
      "action-audit": "action-audit/action-audit.js",
      "http-aware": "http-aware/http-aware.js"
    }
  },
  "main": "node_modules/node-red/red/red.js",
  "author": "JP Dias",
  "license": "MIT",
  "dependencies": {
    "ajv": "^8.0.0",
    "arpping": "^4.0.0",
    "asn1": "^0.2.4",
    "child_process": "^1.0.2",
    "dotenv": "^16.0.0",
    "kalmanjs": "^1.1.0",
    "network-list": "^1.1.5",
    "os": "^0.1.1",
    "oui": "^12.0.0",
    "request": "^2.88.2"
  },
  "devDependencies": {
    "@stryker-mutator/core": "^6.0.0",
    "@stryker-mutator/mocha-runner": "^6.0.0",
    "eslint": "^8.9.0",
    "eslint-config-prettier": "^8.5.0",
    "husky": "^8.0.1",
    "jsverify": "^0.8.4",
    "lint-staged": "^13.0.0",
    "mocha": "^10.0.0",
    "node-red": "^3.0.0",
    "node-red-node-test-helper": "^0.3.0",
    "nyc": "^15.1.0",
    "prettier": "^2.1.2",
    "selenium-webdriver": "^4.0.0-alpha.7"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.js": "eslint --cache --fix",
    "*.{js,md,html,yml,json}": "prettier --write"
  }
}
