-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
38 lines (38 loc) · 951 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "passport-local-sequelize",
"version": "0.9.0",
"engines": {
"node": ">=10.0.0"
},
"description": "Sequelize plugin that simplifies building username and password login with Passport",
"main": "lib/passport-local-sequelize.js",
"author": "Madhur Jain <mformadhur+npmjs@gmail.com> (http://madhur.me/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/madhurjain/passport-local-sequelize.git"
},
"scripts": {
"test": "node_modules/jshint/bin/jshint lib/*.js test/*.js && node_modules/mocha/bin/mocha -R spec"
},
"keywords": [
"passport",
"sequelize",
"local",
"auth",
"authentication",
"mysql",
"login"
],
"dependencies": {
"lodash": "^4.17.21",
"passport-local": "^1.0.0",
"sequelize": "^6.24.0"
},
"devDependencies": {
"jshint": "^2.13.5",
"mocha": "^10.0.0",
"should": "^13.2.3",
"sqlite3": "^5.1.2"
}
}