Skip to content

Commit 561cbd5

Browse files
authored
Merge pull request #289 from strongloop/upgrade-deps
chore: upgrade deps to avoid npm audit warnings
2 parents 17ba74e + 02da15c commit 561cbd5

2 files changed

Lines changed: 10 additions & 9 deletions

File tree

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,25 +29,25 @@
2929
"license": "MIT",
3030
"dependencies": {
3131
"async": "^2.4.0",
32-
"bluebird": "^3.4.0",
32+
"bluebird": "^3.5.3",
3333
"commondir": "^1.0.1",
34-
"debug": "^2.2.0",
34+
"debug": "^4.1.1",
3535
"lodash": "^4.17.11",
3636
"semver": "^5.1.0",
3737
"strong-globalize": "^4.1.1",
3838
"toposort": "^2.0.2"
3939
},
4040
"devDependencies": {
41-
"browserify": "^4.2.3",
42-
"chai": "^3.5.0",
41+
"browserify": "^16.2.3",
42+
"chai": "^4.2.0",
43+
"coffeeify": "^3.0.1",
4344
"coffeescript": "^2.3.1",
44-
"coffeeify": "^2.0.1",
45-
"dirty-chai": "^1.2.2",
45+
"dirty-chai": "^2.0.1",
4646
"eslint": "^5.2.0",
4747
"eslint-config-loopback": "^11.0.0",
48-
"fs-extra": "^3.0.1",
48+
"fs-extra": "^7.0.1",
4949
"loopback": "^3.0.0",
5050
"mocha": "^5.2.0",
51-
"supertest": "^3.0.0"
51+
"supertest": "^4.0.2"
5252
}
5353
}

test/helpers/browser.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ var vm = require('vm');
1010
function createContext() {
1111
var context = {
1212
// required by browserify
13-
XMLHttpRequest: function() { throw new Error('not implemented'); },
13+
XMLHttpRequest: function() {},
14+
clearTimeout: function() {},
1415
FormData: function() { throw new Error('not implemented'); },
1516

1617
localStorage: {

0 commit comments

Comments
 (0)