-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.48 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.48 KB
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
{
"name": "node-mongotools",
"version": "2.2.12",
"description": "node-mongotools: a mongotools wrapper for nodejs. Freely inspired from github.com/amulyakashyap09/mbr",
"author": "Boly38 <boly38@gmail.com>",
"license": "MIT",
"type": "module",
"main": "./lib/mt.js",
"bin": {
"node-mongotools": "./bin/mt.js",
"mt": "./bin/mt.js"
},
"scripts": {
"lint": "eslint .",
"audit": "npm audit --omit=dev",
"test-requirement": "echo You must do: source ./env/initEnv.test.sh",
"test": "echo test&& mocha --bail --unhandled-rejections=strict tests/*.test.js --timeout 50000",
"test21": "echo beta test with nodejs 21&& node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info --test tests",
"ci-test": "echo linux ci-test&& c8 --reporter text --reporter cobertura --reporter html --reporter=lcov --lines 66 mocha --exit --unhandled-rejections=strict tests/*.test.js --timeout 50000"
},
"repository": {
"type": "git",
"url": "https://github.com/boly38/node-mongotools.git"
},
"bugs": {
"url": "https://github.com/boly38/node-mongotools/issues"
},
"keywords": [
"mongo",
"mongodb",
"node",
"wrapper",
"mongotools",
"mongodump",
"mongorestore",
"database",
"collection"
],
"copyright": {
"title": "node-mongotools",
"years": [
2020,
2021,
2022,
2023,
2024,
2025
],
"author": "Brice Vandeputte"
},
"dependencies": {
"dateformat": "^5.0.3",
"dropbox": "^10.34.0",
"dropbox-refresh-token": "^0.0.5"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@stylistic/eslint-plugin": "^5.5.0",
"@types/node": "^24.9.1",
"c8": "^10.1.3",
"chai": "^6.2.0",
"chai-string": "^1.6.0",
"eslint": "^9.38.0",
"eslint-plugin-eslint-plugin": "^7.2.0",
"eslint-plugin-mocha": "^11.2.0",
"eslint-plugin-node": "^11.1.0",
"globals": "^16.4.0",
"json5": "^2.2.3",
"mocha": "^11.7.4",
"mongoose": "^8.19.2"
},
"pnpm": {
"overrides": {
"form-data": "^4.0.4",
"chai-string>chai": "^6.0.1",
"glob": "^9.3.5",
"rimraf": "^3.0.2"
}
},
"doc": {
"npm-force-resolutions": "needed by GHA",
"rimraf": "need to move from nyc to c8"
},
"jshintConfig": {
"esversion": 6
},
"packageManager": "pnpm@10.16.1+sha512.0e155aa2629db8672b49e8475da6226aa4bdea85fdcdfdc15350874946d4f3c91faaf64cbdc4a5d1ab8002f473d5c3fcedcd197989cf0390f9badd3c04678706"
}