-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.98 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.98 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
{
"name": "@360-l/mongo-bulk-data-migration",
"version": "1.6.0",
"description": "MongoDB bulk data migration for node scripts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">= 18.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/node": "~18",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-jest": "^28.9.0",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.1.2",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-api-utils": "^1.4.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"typescript": "^5.6.2"
},
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "NODE_ENV=test jest --coverage --detectOpenHandles",
"prettier": "prettier --config .prettierrc --write .",
"prettier:check": "prettier --config .prettierrc --check .",
"test:watch": "jest --watch"
},
"peerDependencies": {
"mongodb": "*"
},
"author": "Patrick Portal <patrick.portal@360learning.com>",
"license": "MIT",
"volta": {
"node": "18.12.1"
},
"dependencies": {
"lodash": "^4.17.21",
"p-limit": "^3.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/360Learning/mongo-bulk-data-migration.git"
},
"keywords": [
"mongodb",
"migration",
"bulk",
"nodejs",
"script",
"rollback",
"automatic"
],
"bugs": {
"url": "https://github.com/360Learning/mongo-bulk-data-migration/issues"
},
"homepage": "https://github.com/360Learning/mongo-bulk-data-migration#readme"
}