Skip to content

Commit

Permalink
Update dependencies to fix vulnerabilities (#343) (#347)
Browse files Browse the repository at this point in the history
* Update dependencies to fix vulnerabilities #343

* Temporarily rollback version bumps for jshint & nsp
  • Loading branch information
dkundel authored and cjcodes committed May 25, 2018
1 parent a7efaef commit d6f393b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
"xmlbuilder": "9.0.1"
},
"devDependencies": {
"express": "3.x",
"jasmine-node": "1.14.5",
"express": "^4.16.3",
"jasmine-node": "^1.14.5",
"jscs": "3.0.7",
"jsdoc": "3.5.5",
"jshint": "2.8.x",
"nsp": "2.8.0",
"jshint": "^2.8.0",
"nsp": "^2.8.1",
"proxyquire": "1.8.0"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion spec/validation.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe('Testing Express request validation', function() {
var app = require('express')();

// Use url-encoded body parser
app.use(express.urlencoded());
app.use(express.urlencoded({ extended: false }));

// create a simple TwiML-serving web app that will validate a request
// was originated by Twilio
Expand Down

0 comments on commit d6f393b

Please sign in to comment.