{
  "name": "pg-pubsub",
  "version": "0.5.0",
  "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",
  "dependencies": {
    "@types/pg": "^7.4.14",
    "pg": "^7.4.3",
    "pg-format": "^1.0.2",
    "promised-retry": "^0.3.0",
    "verror": "^1.10.0"
  },
  "engines": {
    "node": ">=10.0.0"
  },
  "main": "index.js",
  "scripts": {
    "check:dependency-check": "dependency-check *.js 'test/**/*.js' --no-dev -i @types/pg",
    "check:installed-check": "installed-check -i eslint",
    "check:lint": "eslint .",
    "check:types": "tsc",
    "test:mocha": "NODE_ENV=test nyc --reporter=lcov --reporter text mocha test/**/*.spec.js",
    "test": "run-p check:* && run-p test:*"
  },
  "husky": {
    "hooks": {
      "pre-push": "npm test"
    }
  },
  "devDependencies": {
    "@types/chai": "^4.2.0",
    "@types/chai-as-promised": "^7.1.2",
    "@types/mocha": "^5.2.7",
    "@types/node": "^12.7.1",
    "chai": "^4.2.0",
    "chai-as-promised": "^7.1.1",
    "coveralls": "^3.0.5",
    "dependency-check": "^4.1.0",
    "dotenv": "^8.0.0",
    "eslint": "^6.1.0",
    "eslint-config-standard": "^13.0.1",
    "eslint-plugin-import": "^2.18.2",
    "eslint-plugin-node": "^9.1.0",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-standard": "^4.0.0",
    "husky": "^3.0.3",
    "installed-check": "^3.0.0",
    "mocha": "^6.2.0",
    "npm-run-all": "^4.1.5",
    "nyc": "^14.1.1",
    "typescript": "^3.5.3"
  }
}
