forked from theycallmeswift/node-mongodb-s3-backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 807 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
{
"name": "mongodb_s3_backup",
"version": "0.0.8",
"description": "A tool to help backup your mongodb databases to s3.",
"main": "index.js",
"bin": {
"mongodb_s3_backup": "./bin/mongodb_s3_backup.js"
},
"preferGlobal": "true",
"scripts": {
"start": "node ./bin/mongodb_s3_backup.js ./config.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "https://github.com/theycallmeswift/node-mongodb-s3-backup.git",
"keywords": [
"Mongodb",
"S3",
"backup"
],
"author": "Swift <[email protected]>",
"license": "Beerware",
"dependencies": {
"async": "~0.1.22",
"cli": "~0.4.4-2",
"cli-color": "~0.2.1",
"cron": "^1.8.2",
"knox-s3": "0.9.5",
"time": "^0.11.2"
},
"engines": {
"node": ">=0.8"
}
}