forked from saintedlama/passport-local-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 879 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
{
"name": "passport-local-mongoose",
"description": "Mongoose plugin that simplifies building username and password login with Passport",
"version": "3.1.0",
"main": "index.js",
"repository": "git://github.com/saintedlama/passport-local-mongoose.git",
"author": "Christoph Walcher <[email protected]>",
"license": "MIT",
"keywords": [
"mongoose",
"passport",
"authentication",
"login"
],
"engines": {
"node": ">= 0.12"
},
"dependencies": {
"generaterr": "^1.2.0",
"passport-local": "^1.0.0",
"scmp": "^1.0.0"
},
"devDependencies": {
"chai": "^3.2.0",
"mocha": "^2.3.2",
"mongoose": "4.1.x",
"shelljs": "^0.5.3"
},
"scripts": {
"test": "mocha -R spec test/",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha --report html -- -R spec",
"release": "node release.js"
}
}