Skip to content

Commit

Permalink
updating dependencies + docs
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly-t committed Feb 11, 2020
1 parent f8b622f commit f4af79f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions JavaScript/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## JavaScript implementation of pg-promise-demo

This implementation uses ES2017 syntax, and requires Node.JS v7.6 or later.
This implementation uses ES2017 syntax, and requires Node.JS v8.0.0 or later.

### Prerequisites

* Node.js v7.6 or later
* Node.js v8.0.0 or later

### Installation

Expand Down
4 changes: 2 additions & 2 deletions TypeScript/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## TypeScript 3.x implementation of pg-promise-demo

The project is configured to transpile into ES2017, and requires Node.js v7.6 or later.
The project is configured to transpile into ES2017, and requires Node.js v8.0.0 or later.

### Prerequisites

* Node.js v7.6 or later
* Node.js v8.0.0 or later
* TypeScript 3.x, installed globally via command `npm install typescript -g`

### Installation
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pg-promise-demo",
"version": "1.4.1",
"version": "1.5.0",
"description": "Advanced demo of using pg-promise.",
"main": "JavaScript/index.js",
"homepage": "https://github.com/vitaly-t/pg-promise-demo",
Expand All @@ -22,18 +22,18 @@
},
"license": "MIT",
"engines": {
"node": ">=7.6"
"node": ">=8.0.0"
},
"dependencies": {
"bluebird": "3.7.2",
"express": "4.17.1",
"pg-monitor": "1.3.1",
"pg-promise": "10.3.4"
"pg-promise": "10.4.3"
},
"devDependencies": {
"@types/bluebird": "3.5.29",
"@types/express": "4.17.2",
"@types/node": "13.1.6",
"typescript": "3.7.4"
"@types/node": "13.7.0",
"typescript": "3.7.5"
}
}

0 comments on commit f4af79f

Please sign in to comment.