Skip to content

Commit

Permalink
BREAKING: Merge pull request brianc#105 from brianc/update-deps-node-8
Browse files Browse the repository at this point in the history
* Update deps
* Require node 8
* Remove lib/arrayParser module
  • Loading branch information
bendrucker committed Nov 12, 2019
2 parents 96d238f + 0d2ea80 commit 09ea625
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- '4'
- '8'
- 'lts/*'
matrix:
include:
Expand Down
2 changes: 0 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
var textParsers = require('./lib/textParsers');
var binaryParsers = require('./lib/binaryParsers');
var arrayParser = require('./lib/arrayParser');
var builtinTypes = require('./lib/builtins');

exports.getTypeParser = getTypeParser;
exports.setTypeParser = setTypeParser;
exports.arrayParser = arrayParser;
exports.builtins = builtinTypes;

var typeParsers = {
Expand Down
11 changes: 0 additions & 11 deletions lib/arrayParser.js

This file was deleted.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@
"if-node-version": "^1.1.1",
"nyc": "^14.1.1",
"open-cli": "^5.0.0",
"standard": "^13.1.0",
"tap-spec": "^4.0.0",
"standard": "^14.3.1",
"tap-spec": "^5.0.0",
"tape": "^4.0.0",
"tsd": "^0.7.4"
"tsd": "^0.9.0"
},
"dependencies": {
"pg-int8": "1.0.1",
"pg-numeric": "1.0.2",
"postgres-array": "~2.0.0",
"postgres-bytea": "~1.0.0",
"postgres-bytea": "~2.0.0",
"postgres-date": "~1.0.4",
"postgres-interval": "^1.1.0"
},
Expand All @@ -49,6 +49,6 @@
"lib"
],
"engines": {
"node": ">=4"
"node": ">=8"
}
}

0 comments on commit 09ea625

Please sign in to comment.