{
  "name": "node-red-contrib-heater-controller",
  "version": "3.0.2",
  "contributors": [],
  "engines": {
    "node": ">=12.0.0"
  },
  "dependencies": {
    "lodash": "~4.17.21",
    "ws": "^7.4.6"
  },
  "deprecated": false,
  "description": "A dashboard ui interface node for controlling a heater.",
  "homepage": "https://github.com/SergiuToporjinschi/node-red-contrib-heater-controller#readme",
  "scripts": {
    "start": "nodemon %USERPROFILE%/AppData/Roaming/npm/node_modules/node-red/red.js",
    "test": "mocha",
    "test-cov": "nyc npm run test",
    "test-dev": "nodemon --exec \"mocha\""
  },
  "node-red": {
    "nodes": {
      "ui_heater_controller": "nodes/heater/heater-controller.js"
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/SergiuToporjinschi/node-red-contrib-heater-controller.git"
  },
  "keywords": [
    "node-red",
    "dashboard",
    "heater",
    "controller",
    "thermostat"
  ],
  "author": "Sergiu Toporjinschi",
  "license": "GPL-3.0",
  "bugs": {
    "url": "https://github.com/SergiuToporjinschi/node-red-contrib-heater-controller/issues"
  },
  "files": [
    "nodes/**/*.*"
  ],
  "devDependencies": {
    "babel-eslint": "^10.1.0",
    "coveralls": "^3.1.0",
    "eslint": "^7.20.0",
    "eslint-plugin-es5": "^1.5.0",
    "http-shutdown": "^1.2.2",
    "lodash": "~4.17.21",
    "mocha": "^8.2.1",
    "mocha-param": "^2.0.1",
    "nodemon": "*",
    "nyc": "^15.1.0",
    "should": "^8.4.0",
    "should-sinon": "*",
    "sinon": "^9.2.4",
    "websocket": "^1.0.33"
  },
  "nodemonConfig": {
    "restartable": "rs",
    "ignore": [
      ".git",
      ".vscode"
    ],
    "verbose": true,
    "watch": [
      "./nodes",
      "./spec",
      "package.json"
    ],
    "nodeArgs": "",
    "ext": "js json md html css"
  },
  "nyc": {
    "exclude": [
      "spec/**"
    ],
    "reporter": [
      "lcov",
      "html"
    ]
  },
  "mocha": {
    "diff": true,
    "extension": [
      "js"
    ],
    "slow": 1500,
    "timeout": 20000,
    "recursive": true,
    "spec": [
      "spec/*.spec.js"
    ]
  }
}
