forked from hex7c0/mongodb-backup
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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
53
54
{
"version": "2.0.6",
"name": "@evops/mongodb-backup",
"description": "backup for mongodb",
"keywords": [
"mongodb",
"backup",
"dump"
],
"preferGlobal": false,
"homepage": "https://github.com/eu-evops/mongodb-backup",
"author": {
"name": "hex7c0",
"email": "[email protected]",
"url": "https://hex7c0.github.io/"
},
"repository": {
"type": "git",
"url": "https://github.com/eu-evops/mongodb-backup.git"
},
"bugs": {
"url": "https://github.com/eu-evops/mongodb-backup/issues",
"email": "[email protected]"
},
"main": "index.js",
"dependencies": {
"bson": "^4.6.3",
"fstream": "1.0.11",
"graceful-fs": "4.1.11",
"logger-request": "3.8.0",
"mongodb": "^4.6.0",
"tar": "6.1.11"
},
"devDependencies": {
"grunt": "~1.0",
"grunt-contrib-jshint": "~1.1",
"grunt-contrib-uglify": "~3.3",
"grunt-endline": "~0.7",
"grunt-safer-regex": "~0.1",
"istanbul": "~0.4",
"mocha": "~4.1",
"mongodb-restore": "~1.6",
"supertest": "~3.0"
},
"engines": {
"node": ">=4"
},
"scripts": {
"prepare": "npm prune",
"test": "mocha --bail --check-leaks --globals Promise --timeout 10000",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --timeout 10000"
},
"license": "Apache-2.0"
}