{
  "name": "pg-pubsub",
  "version": "0.8.1",
  "description": "A Publish/Subscribe implementation on top of PostgreSQL NOTIFY/LISTEN",
  "homepage": "http://github.com/voxpelli/node-pg-pubsub",
  "repository": {
    "type": "git",
    "url": "git://github.com/voxpelli/node-pg-pubsub.git"
  },
  "author": {
    "name": "Pelle Wessman",
    "email": "pelle@kodfabrik.se",
    "url": "http://kodfabrik.se/"
  },
  "license": "MIT",
  "engines": {
    "node": "^14.18.0 || >=16.0.0"
  },
  "main": "index.js",
  "types": "index.d.ts",
  "files": [
    "index.js",
    "index.d.ts",
    "index.d.ts.map",
    "lib/*.js",
    "lib/*.d.ts",
    "lib/*.d.ts.map"
  ],
  "scripts": {
    "build:0": "run-s clean",
    "build:1-declaration": "tsc -p declaration.tsconfig.json",
    "build:2-add-ignores": "ts-ignore-import '**/*.d.ts'",
    "build": "run-s build:*",
    "check:dependency-check": "dependency-check *.js 'test/**/*.js' --no-dev",
    "check:installed-check": "installed-check -i eslint-plugin-jsdoc",
    "check:lint": "eslint --report-unused-disable-directives .",
    "check:tsc": "tsc",
    "check:type-coverage": "type-coverage --detail --strict --at-least 98 --ignore-files 'test/**/*'",
    "check": "run-s clean && run-p check:*",
    "clean:declarations": "rm -rf $(find . -maxdepth 2 -type f -name '*.d.ts*')",
    "clean": "run-p clean:*",
    "prepublishOnly": "run-s build",
    "test:mocha": "cross-env NODE_ENV=test c8 --reporter=lcov --reporter text mocha test/**/*.spec.js",
    "test-ci": "run-s test:*",
    "test": "run-s check test:*",
    "prepare": "husky install"
  },
  "dependencies": {
    "pg": "^8.7.3",
    "pg-format": "^1.0.2",
    "pony-cause": "^2.1.8",
    "promised-retry": "^0.5.0"
  },
  "devDependencies": {
    "@hdsydsvenskan/ts-ignore-import": "^2.0.0",
    "@types/chai": "^4.3.4",
    "@types/chai-as-promised": "^7.1.5",
    "@types/mocha": "^10.0.1",
    "@types/node": "^14.18.38",
    "@types/pg": "^8.6.6",
    "@types/pg-format": "^1.0.2",
    "@voxpelli/eslint-config": "^15.2.0",
    "@voxpelli/tsconfig": "^7.0.0",
    "c8": "^7.13.0",
    "chai": "^4.3.7",
    "chai-as-promised": "^7.1.1",
    "cross-env": "^7.0.3",
    "dependency-check": "^5.0.0-7",
    "dotenv": "^16.0.3",
    "eslint": "^8.36.0",
    "eslint-config-standard": "^17.0.0",
    "eslint-plugin-es": "^4.1.0",
    "eslint-plugin-import": "^2.27.5",
    "eslint-plugin-jsdoc": "^39.9.1",
    "eslint-plugin-mocha": "^10.1.0",
    "eslint-plugin-n": "^15.6.1",
    "eslint-plugin-promise": "^6.1.1",
    "eslint-plugin-security": "^1.7.1",
    "eslint-plugin-sort-destructure-keys": "^1.5.0",
    "eslint-plugin-unicorn": "^43.0.2",
    "husky": "^8.0.3",
    "installed-check": "^6.0.5",
    "mocha": "^10.2.0",
    "npm-run-all2": "^6.0.4",
    "type-coverage": "^2.25.0",
    "typescript": "~5.0.2"
  }
}
