-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.48 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
{
"name": "mongomq2",
"version": "1.2.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 <[email protected]> (https://morrisbrodersen.de)"
],
"license": "ISC",
"engines": {
"node": ">=18"
},
"main": "dist/index.js",
"types": "dist/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": "^6.1.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^18.17.15",
"c8": "^10.1.2",
"dotenv": "^16.0.3",
"eslint": "^9.17.0",
"mongodb": "^4.11.0",
"prettier": "^3.0.3",
"tsx": "^4.16.2",
"typedoc": "^0.27.6",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
}
}