forked from saintedlama/passport-local-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 965 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
{
"name": "passport-local-mongoose",
"description": "Mongoose plugin that simplifies building username and password login with Passport",
"version": "1.0.0",
"main": "lib/passport-local-mongoose.js",
"repository": "git://github.com/saintedlama/passport-local-mongoose.git",
"author": "Christoph Walcher <christoph.walcher@gmail.com>",
"license": "MIT",
"keywords": [
"mongoose",
"passport",
"authentication",
"login"
],
"engines": {
"node": ">= 0.9"
},
"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"
}
}