forked from EvilDevRu/node-redis-dump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.09 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
{
"author": {
"name": "Stefan Seide",
"email": "[email protected]"
},
"contributors": [
{
"name": "Dmitriy Yurchenko",
"email": "[email protected]"
}
],
"name": "node-redis-dump2",
"description": "Backup and restore your Redis data written in node.js.",
"keywords": [
"redis",
"dump",
"restore",
"export",
"import"
],
"version": "0.6.0",
"scripts": {
"test": "mocha",
"test:coverage": "nyc --reporter=lcov --report-dir docs/coverage/ mocha --timeout 10000 --exit"
},
"repository": {
"type": "git",
"url": "[email protected]:sseide/node-redis-dump.git"
},
"engines": {
"node": ">10"
},
"dependencies": {
"async": "^3.2.4",
"ioredis": "^5.3.0",
"underscore": "^1.13.1"
},
"devDependencies": {
"chai": "^4.3.7",
"ioredis-mock": "^8.2.6",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"rewire": "^6.0.0",
"sinon": "^15.0.1"
},
"main": "./index.js",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/sseide/node-redis-dump/issues"
},
"license": "MIT"
}