-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 731 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 731 Bytes
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
{
"name": "mongo-each",
"version": "2.0.1",
"description": "Queued asynchronous iterating over mongodb cursor",
"author": "Aleksey Timchenko <flegmatik.bel@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fleg/mongo-each.git"
},
"main": "index.js",
"scripts": {
"test": "tap test.js --bail",
"coverage": "tap test.js --bail --coverage --coverage-report=text --100",
"lint": "eslint --cache ./"
},
"keywords": [
"mongo",
"mongodb",
"each",
"async"
],
"dependencies": {
"fastq": "1.6.0"
},
"devDependencies": {
"eslint": "5.7.0",
"eslint-config-dvpnt": "3.1.0",
"mongodb": "2.2.31",
"tap": "12.6.1"
}
}