forked from wheresvic/mongoose-field-encryption
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "mongoose-field-encryption",
"version": "1.0.6",
"description": "A simple symmetric encryption plugin for fields with string values.",
"main": "lib/mongoose-field-encryption.js",
"files": [
"lib/"
],
"scripts": {
"test": "mocha",
"coverage": "URI='mongodb://mfe:mfe@localhost/mongoose-field-encryption-test' istanbul cover ./node_modules/mocha/bin/_mocha",
"coverage-report": "URI='mongodb://mfe:mfe@localhost/mongoose-field-encryption-test' istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/victorparmar/mongoose-field-encryption"
},
"keywords": [
"mongoose",
"encryption",
"field",
"cqrs",
"string",
"encrypt",
"security",
"search",
"searchable",
"mongo"
],
"author": {
"name": "Victor Parmar",
"email": "[email protected]",
"url": "https://smalldata.tech"
},
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/victorparmar/mongoose-field-encryption/issues"
},
"dependencies": {
"mongoose": "^4.6.0"
},
"devDependencies": {
"bluebird": "^3.4.6",
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"istanbul": "^0.4.5",
"mocha": "^3.1.0",
"mocha-lcov-reporter": "^1.2.0"
}
}