Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Under the hood the [node-postgres](https://github.com/brianc/node-postgres) is u

## Install
```
npm i fastify-postgres --save
npm i pg fastify-postgres --save
```
## Usage
Add it to you project with `register` and you are done!
Expand Down
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fastify-postgres",
"version": "1.3.2",
"version": "2.0.0",
"description": "Fastify PostgreSQL connection plugin",
"main": "index.js",
"scripts": {
Expand All @@ -27,13 +27,16 @@
},
"homepage": "https://github.com/fastify/fastify-postgres#readme",
"dependencies": {
"fastify-plugin": "^1.4.0",
"pg": "^7.8.0"
"fastify-plugin": "^1.4.0"
},
"devDependencies": {
"fastify": "^1.13.4",
"pg": "*",
"pg-native": "^3.0.0",
"standard": "^12.0.0",
"tap": "^12.5.2"
},
"peerDependencies": {
"pg": ">=6.0.0"
}
}