-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 945 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
{
"name": "@tsmx/mongoose-encrypted-string",
"version": "1.0.8",
"description": "EncryptedString type for Mongoose schemas.",
"main": "mongoose-encrypted-string.js",
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"test": "jest",
"test-coverage": "jest --coverage",
"coveralls": "jest --coverage && coveralls < coverage/lcov.info"
},
"author": "tsmx <dev@tsmx.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tsmx/mongoose-encrypted-string.git"
},
"keywords": [
"mongoose",
"MongoDB",
"encryption",
"decryption",
"string",
"AES",
"crypto"
],
"dependencies": {
"@tsmx/string-crypto": "^1.0.4",
"mongoose": "^8.5.0"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"eslint": "^9.8.0",
"eslint-plugin-jest": "^28.8.0",
"jest": "^29.5.0",
"mongodb-memory-server": "^10.0.0"
}
}