forked from madhurjain/passport-local-sequelize
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 897 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
{
"name": "passport-local-sequelize",
"version": "0.6.0",
"description": "Sequelize plugin that simplifies building username and password login with Passport",
"main": "lib/passport-local-sequelize.js",
"author": "Madhur Jain <[email protected]> (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": {
"passport-local": "~1.0.0",
"sequelize": "~3.1.1",
"lodash": "~3.8.0"
},
"devDependencies": {
"mocha": "~1.18.2",
"jshint": "~2.5.0",
"sqlite3": "~2.2.3",
"should": "~3.3.1"
}
}