forked from wholebuzz/dbcp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.33 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "dbcp",
"version": "1.4.10",
"description": "Dump Mysql, Postgres, SQLServer, and ElasticSearch databases directly to AWS S3, Google Cloud Storage, or Azure.",
"keywords": [
"database",
"dump",
"stream",
"mysql",
"postgres",
"elasticsearch",
"leveldb",
"mongodb",
"cloud",
"aws",
"s3",
"gcp",
"gcs",
"shard",
"parquet",
"tfrecord",
"json",
"csv"
],
"author": "wholebuzz",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/wholebuzz/dbcp.git"
},
"types": "./dist/index.d.ts",
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc -b .",
"clean": "tsc -b . --clean",
"start": "node dist/cli.js",
"docs": "typedoc --disableOutputCheck && rm -rf docs/README.md && ./scripts/updateReadmeApiReference.sh",
"test": "jest --runInBand --ci --passWithNoTests --detectOpenHandles --forceExit",
"test:coverage": "jest --runInBand --ci --passWithNoTests --coverage --no-cache",
"badge:coverage": "istanbul-cobertura-badger -v -b coverage",
"lint": "tslint -c tslint.json --project .",
"lint:file": "tslint -c tslint.json",
"fix": "yarn lint --fix",
"format": "yarn run prettier --config .prettierrc.js --write 'src/*.+(ts)' dist/cli.js"
},
"main": "dist/index.js",
"bin": "dist/cli.js",
"files": [
"dist/**/*"
],
"dependencies": {
"@azure/identity": "^2.0.0",
"@azure/storage-blob": "^12.8.0",
"@elastic/elasticsearch": "^7.15.0",
"@google-cloud/storage": "^5.8.1",
"@marsaud/smb2": "^0.18.0",
"@types/parquetjs": "^0.10.3",
"@wholebuzz/fs": "^1.2.9",
"athena-express": "^7.1.3",
"aws-sdk": "^2.975.0",
"axios": "^0.20.0",
"batch2": "^2.0.0",
"byline": "^5.0.0",
"csv": "^6.0.4",
"db-json-column": "^0.0.3",
"dbgate-query-splitter": "4.4.0-alpha.2",
"dotenv": "^10.0.0",
"external-sorting": "^1.3.1",
"fs-ext": "^2.0.0",
"glob-stream": "^7.0.0",
"knex": "^0.95.0",
"knex-schema-inspector": "^1.6.3",
"level": "^7.0.0",
"level-iterator-stream": "^5.0.0",
"mnemonist": "^0.39.0",
"mongodb": "^4.3.1",
"mssql": "^7.2.1",
"mysql": "^2.18.1",
"ora": "^5.4.0",
"p-settle": "^4.1.1",
"parquetjs": "npm:@entitycs/parquetjs-micro",
"pg": "^8.2.0",
"pg-query-stream": "^3.1.1",
"progress-stream": "^2.0.0",
"readline-transform": "^1.0.0",
"s3-stream-upload": "^2.0.2",
"subleveldown": "^5.0.1",
"tedious": "^14.0.0",
"tfrecord-stream": "^0.2.0",
"toposort": "^2.0.2",
"yargs": "^17.2.1"
},
"devDependencies": {
"@types/byline": "^4.2.33",
"@types/jest": "^26.0.22",
"@types/level": "^6.0.0",
"@types/node": "^13.13.5",
"@types/subleveldown": "^4.1.1",
"@types/toposort": "^2.0.3",
"hasha": "^5.2.2",
"hasha-cli": "^4.1.0",
"istanbul-cobertura-badger": "^1.3.1",
"jest": "^26.6.3",
"prettier": "^2.3.2",
"ts-jest": "^26.5.4",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0",
"typedoc": "^0.20.35",
"typedoc-plugin-markdown": "3.8.2",
"typescript": "4.2.4",
"typescript-tslint-plugin": "^1.0.1"
},
"nyc": {
"reporter": [
"cobertura",
"json",
"lcov",
"text"
]
}
}