{
  "name": "node-red-contrib-combine",
  "version": "1.8.1",
  "description": "Node-RED Nodes that output combinations of consecutive incoming messages",
  "keywords": [
    "node-red",
    "combination",
    "combine",
    "collect",
    "aggregate",
    "statistic",
    "table",
    "list",
    "csv",
    "sample",
    "min",
    "max",
    "average",
    "median",
    "deviation"
  ],
  "main": "none",
  "engines": {
    "node": ">=8.0.0"
  },
  "scripts": {
    "test": "camo-purge; xo; nyc mocha \"test/**/*_spec.js\" --exit && nyc report --reporter=text-lcov | coveralls --force",
    "lintfix": "xo --fix",
    "lintonly": "xo",
    "testonly": "mocha \"test/**/*_spec.js\" --exit",
    "testcov": "nyc mocha \"test/**/*_spec.js\" --exit"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rdmtc/node-red-contrib-combine.git"
  },
  "author": "Sebastian Raff <hobbyquaker@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/rdmtc/node-red-contrib-combine/issues"
  },
  "homepage": "https://github.com/rdmtc/node-red-contrib-combine#readme",
  "node-red": {
    "nodes": {
      "if": "nodes/combine-if.js",
      "delta": "nodes/combine-delta.js",
      "bangbang": "nodes/combine-bangbang.js",
      "logic": "nodes/combine-logic.js",
      "statistic": "nodes/combine-statistic.js",
      "list": "nodes/combine-list.js",
      "defer": "nodes/combine-defer.js"
    }
  },
  "devDependencies": {
    "camo-purge": "^1.0.2",
    "coveralls": "^3.0.3",
    "eslint-plugin-html": "^5.0.3",
    "mocha": "^6.0.2",
    "node-red": "^0.19.0",
    "node-red-node-test-helper": "^0.1.8",
    "nyc": "^13.3.0",
    "should": "^13.2.3",
    "sinon": "^7.3.0",
    "xo": "^0.24.0"
  },
  "xo": {
    "space": 4,
    "plugin": "html",
    "global": [
      "$",
      "RED"
    ],
    "extensions": [
      "js",
      "html"
    ],
    "rules": {
      "capitalized-comments": "off",
      "promise/prefer-await-to-then": "off"
    }
  }
}
