UNPKG

pino-pg

Version:

A Pino Transport for PostgreSQL databases.

76 lines (75 loc) 1.7 kB
{ "name": "pino-pg", "version": "2.2.1", "description": "A Pino Transport for PostgreSQL databases.", "main": "index.js", "scripts": { "clean": "rimraf coverage build tmp", "build": "tsc -p tsconfig.json", "build:watch": "tsc -w -p tsconfig.json", "test": "ava **/*.spec.ts --verbose" }, "bin": { "pino-pg": "./index.js" }, "engines": { "node": ">=10.0.0" }, "keywords": [ "pino", "pinojs", "postgres", "pg", "postgresql", "transport" ], "author": "Xavier Stouder <xavier@stouder.io>", "license": "MIT", "types": "dist/index.d.ts", "files": [ "dist/src/index.d.ts", "dist/src/index.js", "dist/src/args.d.ts", "dist/src/args.js", "index.js" ], "dependencies": { "pg": "8.3.0", "pump": "^3.0.0", "split2": "^3.1.1", "through2": "^4.0.2", "yargs": "^15.4.1" }, "devDependencies": { "@ava/typescript": "^1.1.1", "@types/concat-stream": "^1.6.0", "@types/pg": "^7.14.4", "@types/pump": "^1.1.0", "@types/split2": "^2.1.6", "@types/through2": "^2.0.36", "@types/yargs": "^15.0.5", "@types/node": "^14.0.27", "ava": "^3.11.1", "concat-stream": "^2.0.0", "rimraf": "^3.0.2", "source-map-support": "^0.5.19", "ts-node": "^8.10.2", "typescript": "^3.9.7" }, "repository": { "type": "git", "url": "git+ssh://git@github.com/Xstoudi/pino-pg.git" }, "bugs": { "url": "https://github.com/Xstoudi/pino-pg/issues" }, "homepage": "https://github.com/Xstoudi/pino-pg#readme", "ava": { "typescript": { "rewritePaths": { "src/": "dist/src/", "test/": "dist/test/" } } } }