-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
55 lines (55 loc) · 1.33 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
55
{
"version": "1.6.9",
"name": "mongodb-backup",
"description": "backup for mongodb",
"keywords": [
"mongodb",
"backup",
"dump"
],
"preferGlobal": false,
"homepage": "https://github.com/hex7c0/mongodb-backup",
"author": {
"name": "hex7c0",
"email": "[email protected]",
"url": "https://hex7c0.github.io/"
},
"repository": {
"type": "git",
"url": "https://github.com/hex7c0/mongodb-backup.git"
},
"bugs": {
"url": "https://github.com/hex7c0/mongodb-backup/issues",
"email": "[email protected]"
},
"main": "index.min.js",
"dependencies": {
"bson": "1.0.4",
"fstream": "1.0.11",
"graceful-fs": "4.1.11",
"logger-request": "3.8.0",
"mongodb": "2.2.31",
"tar": "2.2.1"
},
"devDependencies": {
"grunt": "~1.0",
"grunt-contrib-uglify": "~3.3",
"grunt-contrib-jshint": "~1.1",
"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",
"prepublishOnly": "grunt",
"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"
}