forked from proswdev/mongoose-bcrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 929 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
41
42
{
"name": "mongoose-bcrypt",
"version": "1.5.1",
"description": "Mongoose plugin encrypting field(s) with bcrypt and providing methods to verify",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/proswdev/mongoose-bcrypt.git"
},
"keywords": [
"mongoose",
"password",
"hash",
"bcrypt",
"encryption",
"security",
"models",
"data",
"schema",
"encrypt",
"auth"
],
"author": "Eric Vandewater <ericv@prosoftwaredev.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/proswdev/mongoose-bcrypt/issues"
},
"homepage": "https://github.com/proswdev/mongoose-bcrypt",
"peerDependencies": {
"mongoose": "^5.2.5",
"bcrypt": "^3.0.0"
},
"devDependencies": {
"bluebird": "^3.5.0",
"mocha": "^2.3.2",
"should": "^4.0.4"
}
}