-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.36 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.36 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
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
{
"name": "node-es-transformer",
"description": "Stream-based library for ingesting and transforming large data files (CSV/JSON) into Elasticsearch indices. Supports ES 8.x and 9.x with cross-version reindexing.",
"keywords": [
"elasticsearch",
"elasticsearch-client",
"data-ingestion",
"data-transformation",
"reindex",
"bulk-indexing",
"csv",
"json",
"parquet",
"arrow",
"streaming",
"etl",
"elasticsearch-8",
"elasticsearch-9",
"migration",
"large-files",
"nodejs"
],
"private": false,
"homepage": "https://github.com/walterra/node-es-transformer#readme",
"repository": {
"type": "git",
"url": "https://github.com/walterra/node-es-transformer.git"
},
"bugs": {
"url": "https://github.com/walterra/node-es-transformer/issues"
},
"license": "Apache-2.0",
"author": "Walter M. Rafelsberger <walter@rafelsberger.at>",
"contributors": [],
"version": "1.2.2",
"engines": {
"node": ">=22.0.0"
},
"main": "dist/node-es-transformer.cjs.js",
"module": "dist/node-es-transformer.esm.js",
"types": "index.d.ts",
"dependencies": {
"@dsnp/parquetjs": "^1.8.7",
"apache-arrow": "^21.1.0",
"cli-progress": "^3.12.0",
"csv-parse": "^6.1.0",
"es8": "npm:@elastic/elasticsearch@^8.17.0",
"es9": "npm:@elastic/elasticsearch@^9.2.0",
"event-stream": "^4.0.1",
"glob": "^13.0.3",
"pino": "^10.1.0",
"split2": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@changesets/get-github-info": "^0.7.0",
"@rollup/plugin-babel": "^6.0.4",
"@testcontainers/elasticsearch": "^11.11.0",
"async-retry": "^1.3.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "^29.12.1",
"eslint-plugin-prettier": "^5.2.1",
"git-cz": "^4.9.0",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"rollup": "4.59.0",
"testcontainers": "^11.11.0",
"typescript": "^5.7.2"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint src __tests__ --ext .js",
"lint:fix": "eslint src __tests__ --ext .js --fix",
"test": "jest --runInBand --detectOpenHandles --testPathIgnorePatterns=cross_version_reindex",
"test:cross-version": "jest --runInBand --detectOpenHandles --testMatch='**/__tests__/cross_version_reindex.test.js' --globalSetup='<rootDir>/test/cross-version-setup.js' --globalTeardown='<rootDir>/test/cross-version-teardown.js'",
"test:types": "tsc --noEmit",
"pretest": "npm run build",
"pretest:cross-version": "npm run build",
"changeset": "changeset",
"changeset:add": "changeset add",
"changeset:status": "changeset status",
"version": "changeset version",
"pack": "npm pack",
"pack:dry-run": "npm pack --dry-run",
"create-sample-data-10000": "node scripts/create_sample_data_10000",
"create-sample-data-100": "node scripts/create_sample_data_100"
},
"files": [
"dist",
"index.d.ts"
],
"config": {
"commitizen": {
"path": "git-cz"
}
},
"jest": {
"testMatch": [
"**/__tests__/**/*.test.js"
],
"globalSetup": "<rootDir>/test/global-testcontainer-setup.js",
"globalTeardown": "<rootDir>/test/global-testcontainer-teardown.js",
"testTimeout": 60000
}
}