-
Notifications
You must be signed in to change notification settings - Fork 294
/
package.json
53 lines (53 loc) · 1.42 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
{
"name": "passport-local-mongoose",
"description": "Mongoose plugin that simplifies building username and password login with Passport",
"version": "8.0.0",
"main": "index.js",
"repository": "saintedlama/passport-local-mongoose",
"author": "Christoph Walcher <[email protected]>",
"license": "MIT",
"keywords": [
"mongoose",
"passport",
"authentication",
"login"
],
"engines": {
"node": ">= 8.0.0"
},
"dependencies": {
"generaterr": "^1.5.0",
"passport-local": "^1.0.0",
"scmp": "^2.1.0"
},
"devDependencies": {
"@types/passport": "1.0.7",
"@types/passport-local": "1.0.34",
"chai": "^4.3.6",
"debug": "^4.3.4",
"drop-mongodb-collections": "^2.0.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^10.0.0",
"mocha-lcov-reporter": "^1.3.0",
"mongoose": "^7.0.1",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"should-release": "^1.2.0",
"standard-version": "^9.5.0",
"tsd": "^0.20.0"
},
"scripts": {
"test": "nyc --reporter=text-summary mocha --recursive --throw-deprecation",
"test:ci": "nyc --reporter=lcov mocha --recursive --throw-deprecation",
"test:tsd": "tsd",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"should-release": "should-release",
"release": "standard-version"
},
"tsd": {
"directory": "test/types"
}
}