{
	"name": "node-red-contrib-postgresql",
	"version": "0.16.2",
	"description": "Node-RED node for PostgreSQL, supporting parameters, split, back-pressure",
	"author": {
		"name": "Alexandre Alapetite",
		"url": "https://github.com/Alkarex"
	},
	"contributors": [
		{
			"name": "Andrea Batazzi",
			"url": "https://github.com/andreabat"
		},
		{
			"name": "Yeray Medina López",
			"url": "https://github.com/ymedlop"
		},
		{
			"name": "Hamza Jalouaja",
			"url": "https://github.com/HySoaKa"
		}
	],
	"license": "Apache-2.0",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/alexandrainst/node-red-contrib-postgresql.git"
	},
	"keywords": [
		"backpressure",
		"node-red-contrib",
		"node-red",
		"nodered",
		"postgres",
		"postgresql",
		"timescale"
	],
	"engines": {
		"node": ">=8"
	},
	"node-red": {
		"version": ">=0.20.0",
		"nodes": {
			"postgresql": "postgresql.js"
		}
	},
	"dependencies": {
		"mustache": "^4.2.0",
		"pg": "^8.22.0",
		"pg-cursor": "^2.21.0"
	},
	"devDependencies": {
		"eslint": "^10.8.0",
		"@eslint/js": "^10.0.1",
		"eslint-plugin-html": "^8.1.4",
		"globals": "^17.9.0",
		"markdownlint-cli2": "^0.23.2",
		"neostandard": "^0.14.0-next"
	},
	"scripts": {
		"eslint": "eslint .",
		"eslint_fix": "eslint --fix .",
		"markdownlint": "markdownlint-cli2",
		"markdownlint_fix": "markdownlint-cli2 --fix",
		"fix": "npm run eslint_fix && npm run markdownlint_fix",
		"pretest": "npm run eslint && npm run markdownlint",
		"test:only": "node test/node-postgres-named.test.js",
		"test": "npm run test:only",
		"precompose:up": "mkdir -p node_modules",
		"compose:up": "docker compose -f test/compose/compose.yaml up --detach --pull always",
		"compose:down": "docker compose -f test/compose/compose.yaml down --volumes --remove-orphans",
		"test:integration": "sh test/compose/test.sh"
	}
}
