-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.22 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.22 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
{
"name": "contexture-mongo",
"version": "0.26.21",
"description": "Mongo Provider for Contexture",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./*": {
"import": "./dist/esm/*",
"require": "./dist/cjs/*"
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "node ../../scripts/esbuild.js --platform=node",
"test": "yarn run -T test --project provider-mongo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartprocure/contexture.git"
},
"keywords": [
"contexture",
"mongo"
],
"author": "Samuel Greene",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartprocure/contexture/issues"
},
"homepage": "https://github.com/smartprocure/contexture/tree/main/packages/provider-mongo",
"packageManager": "yarn@3.3.1",
"dependencies": {
"contexture-util": "^0.1.2",
"debug": "^4.3.1",
"futil": "^1.76.4",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"moment-timezone": "^0.5.28"
},
"peerDependencies": {
"mongodb": ">=4.0.0"
},
"devDependencies": {
"contexture": "^0.12.23",
"mongodb-memory-server": "^10.1.4"
}
}