forked from saintedlama/passport-local-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.32 KB
/
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
41
42
43
44
45
46
47
{
"name": "passport-local-mongoose",
"description": "Mongoose plugin that simplifies building username and password login with Passport",
"version": "6.0.0",
"main": "index.js",
"repository": "saintedlama/passport-local-mongoose",
"author": "Christoph Walcher <[email protected]>",
"license": "MIT",
"keywords": [
"mongoose",
"passport",
"authentication",
"login"
],
"engines": {
"node": ">= 6.0.0"
},
"dependencies": {
"debug": "^3.1.0",
"generaterr": "^1.5.0",
"passport-local": "^1.0.0",
"scmp": "^2.0.0",
"semver": "^5.5.0"
},
"devDependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"drop-mongodb-collections": "^1.2.4",
"eslint": "^5.3.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"mongoose": "^5.2.8",
"nyc": "^12.0.2",
"standard-version": "^4.4.0"
},
"scripts": {
"test": "cross-env NODE_ENV=test nyc --reporter=text-summary mocha --recursive --throw-deprecation --require babel-polyfill --require babel-core/register",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "standard-version"
}
}