-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
37 lines (37 loc) · 1017 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
{
"name": "passport-local-mongoose-email",
"description": "Mongoose plugin that simplifies building username and password login with Passport and email verification",
"version": "0.1.3",
"main": "lib/passport-local-mongoose-email.js",
"repository": "git://github.com/heitortsergent/passport-local-mongoose-email.git",
"author": "Heitor Sergent <[email protected]>",
"license": "MIT",
"keywords": [
"mongoose",
"passport",
"authentication",
"login",
"email"
],
"engines": {
"node": ">= 0.10"
},
"dependencies": {
"passport-local": "^1.0.0"
},
"devDependencies": {
"chai": "^1.9.1",
"gulp": "^3.8.8",
"gulp-clean": "^0.3.1",
"gulp-docco": "0.0.4",
"gulp-exec": "^2.1.0",
"gulp-load-plugins": "^0.6.0",
"gulp-mocha": "^1.1.0",
"mocha": "^1.21.4",
"mongoose": "^3.8.16"
},
"scripts": {
"test": "mocha -R spec test/",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec"
}
}