This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.13 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
{
"name": "contexture-mongo",
"version": "0.26.7",
"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/build.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --selectProjects unit",
"test:watch": "yarn test --selectProjects unit --watch",
"test:ci": "yarn test --selectProjects unit --coverage --json --outputFile test-results.json",
"test:integration": "yarn test --selectProjects integration",
"fmt": "prettier --ignore-path .gitignore --write src/ test/",
"lint": "eslint --ignore-path .gitignore .",
"lint:ci": "yarn lint -o lint-results.json -f json",
"duti:fix": "yarn lint --fix && yarn fmt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartprocure/contexture-mongo.git"
},
"keywords": [
"contexture",
"mongo"
],
"author": "Samuel Greene",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartprocure/contexture-mongo/issues"
},
"homepage": "https://github.com/smartprocure/contexture-mongo#readme",
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "es5",
"arrowParens": "avoid"
},
"packageManager": "[email protected]",
"dependencies": {
"@elastic/datemath": "^2.3.0",
"bluebird": "^3.5.0",
"debug": "^4.3.1",
"futil": "^1.71.8",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"moment-timezone": "^0.5.28"
},
"devDependencies": {
"@flex-development/toggle-pkg-type": "^1.0.1",
"contexture": "^0.0.4",
"danger": "^11.1.2",
"danger-plugin-coverage": "^1.6.2",
"duti": "^0.15.2",
"esbuild": "^0.16.17",
"eslint": "^8.31.0",
"eslint-plugin-import": "^2.27.4",
"glob": "^8.0.3",
"jest": "^29.0.2",
"mingo": "^4.1.2",
"mongodb": "^3.5.6",
"mongodb-memory-server": "^6.5.2",
"prettier": "^2.8.2"
},
"peerDependencies": {
"mongodb": "^3.5.6"
}
}