-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 3.37 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "mongoback",
"version": "3.0.6",
"description": "The most powerful npm module to export your MongoDB",
"main": "bundled/lib/index.js",
"bin": "bundled/bin/index.js",
"types": "bundled/lib/index.d.ts",
"files": [
"package.json",
"bundled",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "shx rm -rf dist bundled",
"pretranspile:source": "npm run clean",
"transpile:source": "tsc --project source",
"pretranspile": "npm run clean",
"transpile": "tsc",
"prebundle": "npm run clean",
"bundle": "webpack",
"lint:source": "eslint source --ext ts --format codeframe",
"lint:source:fix": "eslint source --ext ts --format codeframe --fix",
"lint:test": "eslint test --ext ts --format codeframe",
"lint:test:fix": "eslint test --ext ts --format codeframe --fix",
"lint": "npm run lint:source && npm run lint:test",
"lint:fix": "npm run lint:source:fix && npm run lint:test:fix",
"db:clean": "mongo-cleaner clean -y",
"db:restore": "mongorestore test/mock --quiet",
"db:populate": "npm run db:clean && npm run db:restore",
"test": "mocha dist/test --reporter spec",
"nyc": "nyc --extension=ts --reporter=html --reporter=text --reporter=lcov npm test",
"docs:html": "typedoc",
"docs:html-dev": "typedoc --options typedoc.dev.js",
"docs:tree": "dree parse . --dest docs/tree --name tree --options docs/tree/dree.config.json",
"docs": "npm run docs:html && npm run docs:html-dev && npm run docs:tree",
"commit": "git-cz",
"commit:sign": "git-cz -S",
"prepublishOnly": "npm run bundle"
},
"author": "Eugenio Vinicio Berretta <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/euberdeveloper/mongoback.git"
},
"bugs": {
"url": "https://github.com/euberdeveloper/mongoback/issues"
},
"homepage": "https://mongoback.vercel.app",
"keywords": [
"mongoback",
"mongo",
"mongodb",
"mongo-backup",
"backup",
"mongoexport",
"export",
"mongodb-backup"
],
"dependencies": {
"chalk": "^4.1.2",
"command-exists": "^1.2.9",
"enquirer": "^2.3.6",
"mongo-scanner": "^3.0.5",
"ora": "^5.4.1",
"shelljs": "^0.8.5",
"yargs": "^17.4.1"
},
"nyc": {
"exclude": "**/*.bin.ts test"
},
"devDependencies": {
"@euberdeveloper/eslint-plugin": "^2.3.0",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/command-exists": "^1.2.0",
"@types/mocha": "^9.1.0",
"@types/module-alias": "^2.0.1",
"@types/mongodb": "^4.0.7",
"@types/proxyquire": "^1.3.28",
"@types/rimraf": "^3.0.2",
"@types/shelljs": "^0.8.11",
"@types/sinon": "^10.0.11",
"@types/sinon-chai": "^3.2.8",
"@types/yargs": "^17.0.10",
"bundle-declarations-webpack-plugin": "^3.0.1",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"dree": "^3.3.7",
"mocha": "^9.2.2",
"module-alias": "^2.2.2",
"mongo-cleaner": "^3.3.10",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"rimraf": "^3.0.2",
"shebang-loader": "^0.0.1",
"shx": "^0.3.4",
"sinon": "^13.0.2",
"sinon-chai": "^3.7.0",
"ts-loader": "^9.2.8",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typedoc": "^0.22.15",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0"
}
}