-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "@jsfriends/mongodb-utils",
"description": "Dumps and restores MongoDB collections in JSON format. Can upload dump to AWS S3.",
"version": "0.1.3",
"author": "Andrei Popa @nzpopa",
"bin": {
"mongodb-utils": "./bin/run"
},
"bugs": "https://github.com/nzpopa/mongodb-utils/issues",
"dependencies": {
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.13.3",
"@oclif/plugin-help": "^2.2.1",
"aws-sdk": "^2.524.0",
"json2csv": "^4.5.2"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.0",
"globby": "^10.0.1"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/nzpopa/mongodb-utils",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "mongodb-utils",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "nzpopa/mongodb-utils",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
}
}