-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 924 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
43
{
"name": "mongoose-cipher",
"title": "mongoose-cipher",
"version": "0.0.8",
"description": "Encrypt selected fields on your mongoose Schema",
"main": "lib/index.js",
"scripts": {
"test": "mocha"
},
"keywords": [
"security",
"crypto",
"AES",
"mongoose",
"mongodb",
"mongo",
"cipher",
"encryption",
"mongoose-encrypt"
],
"homepage": "https://github.com/estrada9166/mongoose-cipher",
"author": {
"name": "Alejandro Estrada",
"url": "https://github.com/estrada9166"
},
"repository": {
"type": "git",
"url": "https://github.com/estrada9166/mongoose-cipher"
},
"bugs": {
"url": "https://github.com/estrada9166/mongoose-cipher/issues"
},
"license": "MIT",
"dependencies": {
"crypto-js": "^3.1.9-1"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.1.1",
"mongoose": "^5.0.15",
"standard": "^10.0.3"
}
}