forked from chilts/mongodb-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.22 KB
/
package.json
File metadata and controls
46 lines (46 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
{
"name": "@reedsy/mongodb-queue",
"version": "8.2.1",
"description": "Message queues which uses MongoDB.",
"main": "mongodb-queue.js",
"scripts": {
"build": "tsc --pretty",
"lint": "eslint '**/*' --max-warnings 0",
"prepare": "npm run build",
"pretest": "npm run build",
"test": "set -e; for FILE in test/*.js; do echo --- $FILE ---; node $FILE; done"
},
"devDependencies": {
"@reedsy/eslint-plugin": "^0.14.2",
"@types/node": "^20.19.0",
"eslint": "^8.35.0",
"mongodb4": "npm:mongodb@^4.0.0",
"mongodb5": "npm:mongodb@^5.0.0",
"mongodb6": "npm:mongodb@^6.0.0",
"mongodb7": "npm:mongodb@^7.0.0",
"tape": "^4.10.1",
"typescript": "^4.9.5"
},
"peerDependencies": {
"mongodb": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
},
"homepage": "https://github.com/chilts/mongodb-queue",
"repository": {
"type": "git",
"url": "git://github.com/reedsy/mongodb-queue.git"
},
"bugs": {
"url": "http://github.com/chilts/mongodb-queue/issues",
"mail": "andychilton@gmail.com"
},
"author": {
"name": "Andrew Chilton",
"email": "andychilton@gmail.com",
"url": "http://chilts.org/"
},
"license": "MIT",
"keywords": [
"mongodb",
"queue"
]
}