Skip to content
This repository has been archived by the owner on Mar 4, 2019. It is now read-only.

Commit

Permalink
update dependencies, close #331
Browse files Browse the repository at this point in the history
  • Loading branch information
dmfay committed Nov 22, 2016
1 parent 46a0733 commit 7a14be9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ var stripBom = require('strip-bom');

var self;

if (typeof Promise == 'undefined') {
global.Promise = require('promise-polyfill');
}

var Massive = function(args) {
this.scriptsDir = args.scripts || process.cwd() + "/db";
this.enhancedFunctions = args.enhancedFunctions || false;
Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,19 @@
],
"license": "BSD-3-Clause",
"dependencies": {
"args-js": "^0.10.6",
"async": "^0.9.0",
"args-js": "^0.10.12",
"async": "^2.1.4",
"commander": "^2.6.0",
"deasync": "^0.1.1",
"glob": "^7.0.5",
"pg": "^4.5.5",
"pg": "^6.1.0",
"pg-query-stream": "^0.7.0",
"promise-polyfill": "^6.0.2",
"strip-bom": "^2.0.0",
"underscore": "^1.8.2"
},
"devDependencies": {
"eslint": "^1.10.3",
"eslint": "^2.13.1",
"istanbul": "^0.4.2",
"mocha": "^2.5.3",
"sinon": "^1.12.2"
Expand Down

0 comments on commit 7a14be9

Please sign in to comment.