forked from saintedlama/passport-local-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.94 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "passport-local-marpat",
"description": "marpat account plugin that simplifies building username and password login with Passport",
"version": "3.1.1",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://Luidog@github.com/Luidog/passport-local-marpat.git"
},
"author": "Lui de la Parra",
"bugs": {
"url": "https://github.com/Luidog/passport-local-marpat/issues"
},
"homepage": "https://github.com/Luidog/passport-local-marpat#readme",
"license": "MIT",
"keywords": [
"marpat",
"passport",
"authentication",
"login"
],
"dependencies": {
"crypto-random-string": "^3.0.1",
"marpat": "^3.0.0",
"snyk": "^1.260.0",
"uuid": "^3.3.3"
},
"mos": {
"plugins": [
"execute"
]
},
"devDependencies": {
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.9",
"dotenv": "^8.2.0",
"eslint": "^6.7.2",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"express": "^4.17.1",
"jsdoc": "^3.6.3",
"minami": "^1.2.3",
"mocha": "^6.2.2",
"mocha-lcov-reporter": "^1.3.0",
"mos": "^1.3.1",
"mos-plugin-dependencies": "^2.2.2",
"mos-plugin-execute": "^1.0.2",
"mos-plugin-installation": "^1.2.2",
"mos-plugin-license": "^1.2.2",
"mos-plugin-snippet": "^2.1.3",
"nyc": "^14.1.1",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"prettier": "^1.19.1",
"varium": "^2.0.6"
},
"scripts": {
"test": "nyc _mocha --recursive ./test --timeout=15000 --exit",
"report": "nyc report --reporter=html",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"generate-docs": "mos && node_modules/.bin/jsdoc --configure .jsdoc.js --verbose",
"examples": "node examples/index.js",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"snyk": true
}