Files
archived-next-auth/package.json
Iain Collins afcae75aaf Now passes oAuth profile to insert() and update()
The oAuth profile for a service is now passed to update() and insert() when signing in via oAuth (or linking accounts).

e.g. `update(user, oAuthProfile)` and `insert(user, oAuthProfile)`

This provides a way to also capture oAuth provider specific fields, such as avatar, location, organisation, etc. as needed.

Thanks to @gielcobben for raising this.
2018-02-02 18:04:13 +00:00

28 lines
669 B
JSON

{
"name": "next-auth",
"version": "1.3.0",
"description": "An authentication library for Next.js",
"repository": "https://github.com/iaincollins/next-auth.git",
"main": "index.js",
"scripts": {},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"express": "^4.16.2",
"express-session": "^1.15.6",
"lusca": "^1.5.2",
"nodemailer": "^4.4.2",
"nodemailer-direct-transport": "^3.3.2",
"passport": "^0.4.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"next": "^4.2.3",
"next-auth-client": "^1.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
}
}