Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 37 additions & 18 deletions package.json
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",

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?

"promisify-any": "^2.0.1",
"statuses": "^1.3.1",

Choose a reason for hiding this comment

The 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",

Choose a reason for hiding this comment

The 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": {
Expand Down