-
-
Notifications
You must be signed in to change notification settings - Fork 183
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.56 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
{
"name": "migrate-mongo",
"version": "14.0.7",
"description": "A database migration tool for MongoDB in Node",
"type": "module",
"main": "lib/migrate-mongo.js",
"exports": {
".": {
"import": "./lib/migrate-mongo.js",
"require": "./lib/migrate-mongo.cjs"
}
},
"bin": {
"migrate-mongo": "bin/migrate-mongo.js"
},
"scripts": {
"test": "vitest run --coverage --exclude test/integration.test.js",
"test:watch": "vitest --exclude test/integration.test.js",
"test:ci": "vitest run --coverage --exclude test/integration.test.js",
"test:integration": "vitest run test/integration.test.js --no-coverage",
"lint": "eslint lib/ test/",
"lint:fix": "eslint lib/ test/ --fix"
},
"author": "Sebastian Van Sande",
"license": "MIT",
"keywords": [
"migrate mongo mongodb migrations database"
],
"repository": {
"type": "git",
"url": "https://github.com/seppevs/migrate-mongo.git"
},
"engines": {
"node": ">=20.0.0"
},
"preferGlobal": true,
"dependencies": {
"cli-table3": "^0.6.5",
"commander": "^14.0.2"
},
"peerDependencies": {
"mongodb": "^4.4.1 || ^5.0.0 || ^6.0.0 || ^7.0.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.15",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vitest": "^0.5.4",
"mongodb-memory-server": "^10.4.0",
"vitest": "^4.0.15"
},
"overrides": {
"test-exclude": "^7.0.1"
},
"eslintConfig": {
"extends": [
"prettier"
],
"parserOptions": {
"ecmaVersion": 2018
}
}
}