-
-
Notifications
You must be signed in to change notification settings - Fork 926
update packages #511
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update packages #511
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,34 +1,53 @@ | ||
| { | ||
| "name": "oauth2-server", | ||
| "description": "Complete, framework-agnostic, compliant and well tested module for implementing an OAuth2 Server in node.js", | ||
| "version": "3.0.0", | ||
| "version": "3.0.1", | ||
| "keywords": [ | ||
| "oauth", | ||
| "oauth2" | ||
| ], | ||
| "contributors": [ | ||
| { "name": "Thom Seddon", "email": "thom@seddonmedia.co.uk" }, | ||
| { "name": "Lars F. Karlström" , "email": "lars@lfk.io" }, | ||
| { "name": "Rui Marinho", "email": "ruipmarinho@gmail.com" }, | ||
| { "name" : "Tiago Ribeiro", "email": "tiago.ribeiro@gmail.com" }, | ||
| { "name": "Michael Salinger", "email": "mjsalinger@gmail.com" }, | ||
| { "name": "Nuno Sousa" }, | ||
| { "name": "Max Truxa" } | ||
| { | ||
| "name": "Thom Seddon", | ||
| "email": "thom@seddonmedia.co.uk" | ||
| }, | ||
| { | ||
| "name": "Lars F. Karlström", | ||
| "email": "lars@lfk.io" | ||
| }, | ||
| { | ||
| "name": "Rui Marinho", | ||
| "email": "ruipmarinho@gmail.com" | ||
| }, | ||
| { | ||
| "name": "Tiago Ribeiro", | ||
| "email": "tiago.ribeiro@gmail.com" | ||
| }, | ||
| { | ||
| "name": "Michael Salinger", | ||
| "email": "mjsalinger@gmail.com" | ||
| }, | ||
| { | ||
| "name": "Nuno Sousa" | ||
| }, | ||
| { | ||
| "name": "Max Truxa" | ||
| } | ||
| ], | ||
| "main": "index.js", | ||
| "dependencies": { | ||
| "basic-auth": "1.1.0", | ||
| "bluebird": "3.5.0", | ||
| "lodash": "4.17.4", | ||
| "promisify-any": "2.0.1", | ||
| "statuses": "1.3.1", | ||
| "type-is": "1.6.15" | ||
| "basic-auth": "^2.0.0", | ||
| "bluebird": "^3.5.0", | ||
| "lodash": "^4.17.4", | ||
| "promisify-any": "^2.0.1", | ||
| "statuses": "^1.3.1", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In my testing this could go to 1.5 without issue. |
||
| "type-is": "^1.6.15" | ||
| }, | ||
| "devDependencies": { | ||
| "jshint": "2.9.4", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This will still cause security warnings from npm audit. jshint has old dependencies and hasn't released a version in a while - it's probably not maintained anymore. I recommend replacing with eslint. |
||
| "mocha": "3.3.0", | ||
| "should": "11.2.1", | ||
| "sinon": "2.3.2" | ||
| "jshint": "^2.9.4", | ||
| "mocha": "^5.2.0", | ||
| "should": "^13.2.3", | ||
| "sinon": "^6.1.4" | ||
| }, | ||
| "license": "MIT", | ||
| "engines": { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a later version available - maybe bump to 4.18?