forked from saintedlama/passport-local-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1011 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
39
40
{
"name": "passport-local-mongoose",
"description": "Mongoose plugin that simplifies building username and password login with Passport",
"version": "4.2.1",
"main": "index.js",
"repository": "saintedlama/passport-local-mongoose",
"author": "Christoph Walcher <christoph.walcher@gmail.com>",
"license": "MIT",
"keywords": [
"mongoose",
"passport",
"authentication",
"login"
],
"engines": {
"node": ">= 0.12"
},
"dependencies": {
"debug": "^2.6.8",
"generaterr": "^1.5.0",
"passport-local": "^1.0.0",
"scmp": "^2.0.0",
"semver": "^5.4.1"
},
"devDependencies": {
"chai": "^4.1.1",
"coveralls": "^2.13.1",
"cross-env": "^2.0.0",
"mocha": "^3.5.0",
"mocha-lcov-reporter": "^1.3.0",
"mongoose": "^4.11.6",
"nyc": "^11.1.0",
"shelljs": "^0.7.8"
},
"scripts": {
"test": "cross-env NODE_ENV=test nyc mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"release": "node release.js"
}
}