forked from onet/node-db-s3-backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 942 Bytes
/
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
{
"name": "db-s3-backup",
"version": "0.0.3",
"description": "A tool to help backup your mongodb and redis databases to s3.",
"main": "index.js",
"bin": {
"db-s3-backup": "./bin/db-s3-backup.js"
},
"preferGlobal": "true",
"scripts": {
"start": "node ./bin/db-s3-backup.js ./config.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "Beerware",
"author": "Swift <[email protected]>, Team Strike <[email protected]>",
"bugs": {
"url": "https://github.com/getstrike/node-db-s3-backup/issues"
},
"homepage": "https://github.com/getstrike/node-db-s3-backup",
"keywords": [
"mongodb",
"redis",
"db",
"S3",
"backup"
],
"dependencies": {
"async": "~0.1.22",
"cli": "~0.4.4-2",
"cli-color": "~0.2.1",
"cron": "~1.0.1",
"knox": "~0.8.0",
"request": "2.72.0",
"time": "^0.11.2"
},
"engines": {
"node": ">=0.8"
}
}