-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.46 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
{
"name": "mongomq2",
"version": "1.4.2",
"description": "A general-purpose message and event queuing library for MongoDB",
"keywords": [
"mongodb",
"message",
"messaging",
"queue",
"event",
"stream"
],
"homepage": "https://github.com/morris/mongomq2",
"repository": {
"type": "git",
"url": "git+https://github.com/morris/mongomq2.git"
},
"bugs": {
"url": "https://github.com/morris/mongomq2/issues"
},
"contributors": [
"Morris Brodersen <mb@morrisbrodersen.de> (https://morrisbrodersen.de)"
],
"license": "ISC",
"engines": {
"node": ">=18"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint .",
"test": "c8 --reporter text --reporter lcov node --import tsx --test test/*.test.ts test/*/*.test.ts",
"build": "tsc --project tsconfig.build.json",
"clean": "rm -rf coverage dist",
"docs": "typedoc src/index.ts --excludeProtected --excludePrivate"
},
"peerDependencies": {
"mongodb": ">=4"
},
"dependencies": {
"mingo": "^7.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^18.17.15",
"c8": "^12.0.0",
"eslint": "^10.2.0",
"mongodb": "^7.0.0",
"prettier": "^3.0.3",
"tsx": "^4.16.2",
"typedoc": "^0.28.5",
"typescript": "^6.0.3",
"typescript-eslint": "^8.18.2"
}
}