-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 910 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 910 Bytes
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
{
"name": "etl-migration-framework",
"version": "1.0.0",
"description": "Idempotent data migration CLI with validation, dry-run mode, and error recovery",
"main": "dist/cli.js",
"bin": {
"etl-migrate": "./dist/cli.js"
},
"scripts": {
"dev": "ts-node src/cli.ts",
"build": "tsc",
"start": "node dist/cli.js",
"migrate": "ts-node src/cli.ts run"
},
"keywords": ["etl", "migration", "cli", "data-pipeline", "validation", "idempotent"],
"author": "hooperits",
"license": "MIT",
"dependencies": {
"commander": "^12.1.0",
"chalk": "^4.1.2",
"csv-parse": "^5.5.0",
"csv-stringify": "^6.5.0",
"xlsx": "^0.18.5",
"mongoose": "^8.8.0",
"zod": "^3.23.8",
"ora": "^5.4.1",
"cli-table3": "^0.6.5"
},
"devDependencies": {
"typescript": "^5.6.0",
"@types/node": "^22.0.0",
"ts-node-dev": "^2.0.0",
"ts-node": "^10.9.0"
}
}