-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 849 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
{
"name": "mongoose-cryptify",
"version": "1.1.0",
"description": "Mongoose.js plugin for model path encryption via bcrypt",
"main": "mongoose-cryptify.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha \"test/**/*.js\" --reporter=spec"
},
"repository": {
"type": "git",
"url": "https://github.com/james1x0/mongoose-cryptify"
},
"keywords": [
"mongoose",
"encryption",
"models",
"data",
"security"
],
"author": "James Collins",
"license": "MIT",
"bugs": {
"url": "https://github.com/james1x0/mongoose-cryptify/issues"
},
"homepage": "https://github.com/james1x0/mongoose-cryptify",
"devDependencies": {
"chai": "^1.10.0",
"mocha": "^2.0.1",
"mongoose": "^5.2.16"
},
"dependencies": {
"bcrypt": "^5.0.0",
"bluebird": "^2.3.11"
}
}