forked from chilts/mongodb-queue
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "mongodb-queue-up",
"version": "5.4.0",
"description": "Message queues which uses MongoDB.",
"main": "mongodb-queue.js",
"types": "mongodb-queue.d.ts",
"files": [
"mongodb-queue.js",
"mongodb-queue.d.ts"
],
"scripts": {
"test": "npm run test4 && npm run test5 && npm run test6",
"test4": "set -e; for FILE in test/*.js; do echo --- $FILE - mongodb v4 ---; node $FILE 4; done",
"test5": "set -e; for FILE in test/*.js; do echo --- $FILE - mongodb v5 ---; node $FILE 5; done",
"test6": "set -e; for FILE in test/*.js; do echo --- $FILE - mongodb v6 ---; node $FILE 6; done"
},
"dependencies": {},
"devDependencies": {
"async": "^2.6.2",
"mongodb4": "npm:mongodb@^4.4.1",
"mongodb5": "npm:mongodb@^5.7.0",
"mongodb6": "npm:mongodb@^6.0.0",
"tape": "^4.10.1"
},
"peerDependencies": {
"mongodb": "^4 || ^5 || ^6"
},
"homepage": "https://github.com/mhassan1/mongodb-queue-up",
"repository": {
"type": "git",
"url": "git://github.com/mhassan1/mongodb-queue-up.git"
},
"license": "MIT",
"keywords": [
"mongodb",
"queue"
]
}