-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
32 lines (32 loc) · 918 Bytes
/
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
{
"name": "etl",
"version": "0.8.0",
"description": "Collection of stream-based components that form an ETL pipeline",
"main": "index.js",
"author": "Ziggy Jonsson (http://github.com/zjonsson/)",
"repository": {
"type": "git",
"url": "http://github.com/ZJONSSON/node-etl"
},
"scripts": {
"test": "docker compose up -d --no-recreate --quiet-pull;docker exec node-etl-runner-1 bash ./test.sh",
"docker": "docker compose up -d --no-recreate --quiet-pull;docker exec node-etl-runner-1 bash"
},
"license": "MIT",
"dependencies": {
"bluebird": "~3.5.0",
"csv-parser": "~1.8.0",
"duplexer3": "^0.1.4",
"moment": "~2.29.4",
"streamz": "~1.8.10"
},
"devDependencies": {
"@elastic/elasticsearch": "^8.11.0",
"mongodb": "^6.3.0",
"mysql": "^2.18.1",
"pg": "^8.11.3",
"pg-query-stream": "~1.0.0",
"tap": "^19.0.2",
"url-js": "^0.2.5"
}
}