-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.32 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
{
"name": "@tiagoboeing/mongodb-database-exporter",
"version": "1.0.6",
"description": "Exports all MongoDB collections to JSON files.",
"author": "Tiago Boeing <[email protected]>",
"homepage": "https://github.com/tiagoboeing/mongodb-database-exporter#readme",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"prepublish": "npm run build"
},
"files": [
"dist/"
],
"keywords": [
"mongodb",
"database-exporter",
"backup",
"nodejs"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tiagoboeing/mongodb-database-exporter/issues"
},
"repository": {
"url": "git+https://github.com/tiagoboeing/mongodb-database-exporter.git"
},
"dependencies": {
"chalk": "^4.1.2",
"dotenv": "^10.0.0",
"mongodb": "^4.1.0",
"node-emoji": "^1.11.0",
"ts-node": "^10.2.0"
},
"devDependencies": {
"@types/node-emoji": "^1.8.1",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"typescript": "^4.3.5"
}
}