-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.84 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "lightcrypto-link-node",
"version": "1.0.0",
"description": "A lightweight, application-level field encryption library (ALFE) for Node.js/Mongoose and MongoDB with blind index, multi-KMS/SM-crypto support, and 100% interoperability with the Java LightCrypto-Link ecosystem. Completely bypasses libmongocrypt.",
"main": "src/index.js",
"scripts": {
"test": "jest",
"test:unit": "jest --testPathPattern=test/unit",
"test:integration": "jest --testPathPattern=test/integration",
"test:interop": "jest --testPathPattern=test/interoperability",
"lint": "eslint src/ test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emmansun/lightcrypto-link-node.git"
},
"keywords": [
"mongodb",
"mongoose",
"encryption",
"field-level-encryption",
"blind-index",
"crypto",
"aes-256-gcm",
"sm4",
"lightcrypto"
],
"author": "",
"license": "Apache-2.0",
"type": "commonjs",
"bugs": {
"url": "https://github.com/emmansun/lightcrypto-link-node/issues"
},
"homepage": "https://github.com/emmansun/lightcrypto-link-node#readme",
"peerDependencies": {
"mongoose": ">=8.0.0"
},
"optionalDependencies": {
"@alicloud/kms20160120": ">=3.0.0",
"@alicloud/openapi-client": ">=0.4.15",
"@azure/identity": ">=4.0.0",
"@azure/keyvault-keys": ">=4.0.0",
"bson": ">=6.0.0",
"mongoose-long": ">=0.8.0"
},
"devDependencies": {
"@alicloud/kms20160120": "^3.0.0",
"@alicloud/openapi-client": "^0.4.15",
"@azure/identity": "^4.13.1",
"@azure/keyvault-keys": "^4.10.2",
"eslint": "^10.7.0",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.0.0",
"mongoose": "^9.0.0"
},
"jest": {
"testMatch": [
"**/*.test.js"
],
"testEnvironment": "node"
},
"allowScripts": {
"mongodb-memory-server@10.4.3": true
}
}