{
  "name": "pg-notify",
  "version": "1.0.6",
  "description": "Postgres pubsub client",
  "type": "module",
  "module": "src/index.js",
  "main": "cjs/src/index.js",
  "exports": {
    "types": "./types/index.d.ts",
    "import": "./src/index.js",
    "default": "./cjs/src/index.js"
  },
  "types": "types/index.d.ts",
  "typings": "types/index.d.ts",
  "scripts": {
    "test": "ava --serial test/**",
    "test:cjs": "ava --serial cjs/test/**",
    "test:types": "tsd",
    "test:all": "npm run lint && npm run test && npm run test:cjs && npm run test:types",
    "lint": "standard",
    "lint:fix": "standard --fix",
    "coverage": "c8 --reporter=lcov --reporter=text ava --serial test/**",
    "transpile:cjs": "node ./transpile.cjs.js && npm run lint:fix"
  },
  "author": "Aldis Ameriks <aldis.ameriks@gmail.com>",
  "keywords": [
    "postgres",
    "pubsub",
    "pg",
    "notify",
    "listen",
    "subscribe"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/aldis-ameriks/pg-notify.git"
  },
  "homepage": "https://github.com/aldis-ameriks/pg-notify#readme",
  "bugs": {
    "url": "https://github.com/aldis-ameriks/pg-notify/issues"
  },
  "dependencies": {
    "pg": "^8.16.3",
    "pg-format": "^1.0.4",
    "secure-json-parse": "^4.0.0"
  },
  "devDependencies": {
    "@types/pg": "^8.15.5",
    "ava": "^6.4.1",
    "benchmark": "^2.1.4",
    "c8": "10.1.3",
    "coveralls": "^3.1.1",
    "dotenv": "^17.2.1",
    "standard": "^17.1.2",
    "tsd": "^0.33.0"
  },
  "tsd": {
    "directory": "types"
  }
}
