-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
52 lines (52 loc) · 1.27 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
{
"version": "1.6.2",
"name": "mongodb-restore",
"description": "restore data from mongodb-backup",
"keywords": [
"mongodb",
"restore",
"dump"
],
"preferGlobal": false,
"homepage": "https://github.com/hex7c0/mongodb-restore",
"author": {
"name": "hex7c0",
"email": "hex7c0@gmail.com",
"url": "https://hex7c0.github.io/"
},
"repository": {
"type": "git",
"url": "https://github.com/hex7c0/mongodb-restore.git"
},
"bugs": {
"url": "https://github.com/hex7c0/mongodb-restore/issues",
"email": "hex7c0@gmail.com"
},
"main": "index.min.js",
"dependencies": {
"bson": "1.0.4",
"graceful-fs": "4.1.11",
"logger-request": "3.8.0",
"mongodb": "2.2.26",
"tar": "2.2.1"
},
"devDependencies": {
"grunt": "~1.0",
"grunt-contrib-uglify": "~3.0",
"grunt-contrib-jshint": "~1.1",
"grunt-endline": "~0.6",
"grunt-safer-regex": "~0.0",
"istanbul": "~0.4",
"mocha": "~3.4",
"mongodb-backup": "~1.6"
},
"engines": {
"node": ">=4"
},
"scripts": {
"prepublish": "npm prune",
"test": "mocha --bail --check-leaks --globals Promise --timeout 15000",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --timeout 15000"
},
"license": "Apache-2.0"
}