-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
79 lines (79 loc) · 2.26 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
{
"name": "node-mongotools",
"version": "2.2.6",
"description": "node-mongotools: a mongotools wrapper for nodejs. Freely inspired from github.com/amulyakashyap09/mbr",
"author": "Boly38 <[email protected]>",
"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",
"preinstall": "npx force-resolutions",
"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 ci-test&& nyc --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
],
"author": "Brice Vandeputte"
},
"dependencies": {
"dateformat": "^5.0.3",
"dropbox": "^10.34.0",
"dropbox-refresh-token": "^0.0.3"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@stylistic/eslint-plugin-js": "^1.7.2",
"@types/node": "^20.12.7",
"chai": "^4.3.10",
"chai-string": "^1.5.0",
"eslint": "^9.0.0",
"eslint-plugin-eslint-plugin": "^6.0.0",
"eslint-plugin-mocha": "^10.4.2",
"eslint-plugin-node": "^11.1.0",
"globals": "^15.0.0",
"json5": "^2.2.3",
"mocha": "^10.4.0",
"mongoose": "^8.3.2",
"npm-force-resolutions": "^0.0.10",
"nyc": "^15.1.0"
},
"resolutions": {
"json5": "^2.2.3",
"samver": "^6.3.1"
},
"jshintConfig": {
"esversion": 6
}
}