-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 806 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 806 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
33
34
35
36
37
38
39
40
{
"name": "simplecrawler-mongo-queue",
"version": "1.0.1",
"description": "MongoDB queue implementation for simplecrawler",
"author": {
"name": "Konstantin Bychkov",
"email": "k.bychkov@yandex.ru"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kbychkov/simplecrawler-mongo-queue.git"
},
"engines": {
"node": ">=8"
},
"files": [
"index.js"
],
"main": "index.js",
"scripts": {
"test": "mocha",
"release": "standard-version"
},
"keywords": [
"simplecrawler",
"mongo",
"queue"
],
"devDependencies": {
"mocha": "^6.2.2",
"mongodb": "^3.3.3",
"simplecrawler": "^1.1.8",
"standard-version": "^7.0.0"
},
"dependencies": {
"flatten-obj": "^3.1.1",
"shortid": "^2.2.15"
}
}