-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 2.56 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "mongodb-client-encryption",
"version": "6.1.1",
"description": "Official client encryption module for the MongoDB Node.js driver",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"README.md",
"HISTORY.md",
"addon",
"lib",
"src",
"binding.gyp"
],
"directories": {
"lib": "lib"
},
"scripts": {
"install:libmongocrypt": "node .github/scripts/libmongocrypt.mjs",
"install": "prebuild-install --runtime napi || node-gyp rebuild",
"clang-format": "clang-format --style=file:.clang-format --Werror -i addon/*",
"check:eslint": "ESLINT_USE_FLAT_CONFIG=false eslint src test",
"check:clang-format": "clang-format --style=file:.clang-format --dry-run --Werror addon/*",
"test": "mocha --v8-expose-gc test",
"prepare": "tsc",
"rebuild": "node-gyp rebuild",
"prebuild": "prebuild --runtime napi --strip --verbose --all"
},
"author": {
"name": "The MongoDB NodeJS Team",
"email": "[email protected]"
},
"bugs": {
"url": "https://jira.mongodb.org/projects/NODE/issues/"
},
"license": "Apache-2.0",
"gypfile": true,
"mongodb:libmongocrypt": "1.11.0",
"dependencies": {
"node-addon-api": "^4.3.0",
"prebuild-install": "^7.1.2"
},
"devDependencies": {
"@types/bindings": "^1.5.5",
"@types/chai": "^4.3.17",
"@types/mocha": "^10.0.9",
"@types/node": "^22.8.6",
"@types/semver": "^7.5.8",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"bson": "^6.9.0",
"chai": "^4.5.0",
"chai-subset": "^1.6.0",
"clang-format": "^1.8.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"mocha": "^10.8.2",
"node-gyp": "^10.1.0",
"prebuild": "^13.0.0",
"prettier": "^3.2.5",
"semver": "^7.6.2",
"sinon": "^18.0.0",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"standard-version": "^9.5.0",
"tar": "^7.4.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-cached-transpile": "^0.0.6"
},
"overrides": {
"prebuild": {
"node-gyp": "$node-gyp"
}
},
"engines": {
"node": ">=16.20.1"
},
"binary": {
"napi_versions": [
4
]
},
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/mongodb-client-encryption"
},
"tsd": {
"directory": "test/types",
"compilerOptions": {
"strict": true,
"target": "esnext",
"module": "commonjs",
"moduleResolution": "node"
}
}
}