-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1022 Bytes
/
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
{
"name": "@cdxoo/mongodb-restore",
"version": "2.0.1",
"description": "restore mongodb bson dumps",
"engines": {
"node": ">=14"
},
"main": "src/index.js",
"scripts": {
"test": "npx mocha --bail src/*.spec.js",
"release:dry": "npx release-it --dry-run --no-npm",
"release:alpha": "release-it --preRelease=alpha",
"release:beta": "release-it --preRelease=beta",
"release": "release-it"
},
"author": "Jan Schwalbe",
"license": "MIT",
"keywords": [
"mongo",
"mongodb",
"mongorestore",
"mongodump"
],
"devDependencies": {
"chai": "^4.4.1",
"mocha": "^10.5.2",
"mongodb-memory-server": "^6.9.6",
"release-it": "^17.4.0"
},
"dependencies": {
"bson": "^4.7.2",
"mongodb": "^4.17.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdxOo/mongodb-restore.git"
},
"bugs": {
"url": "https://github.com/cdxOo/mongodb-restore/issues"
},
"homepage": "https://github.com/cdxOo/mongodb-restore#readme"
}