UNPKG

@flowlab/all

Version:

A cool library focusing on handling various flows

73 lines (72 loc) 1.72 kB
{ "name": "@flowlab/data", "version": "0.1.0", "description": "Data flow management library for ETL, cleaning, batch and stream processing.", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "dev": "tsc -w", "test": "jest", "test:watch": "jest --watch", "test:cov": "jest --coverage", "lint": "eslint src/**/*.ts tests/**/*.ts", "format": "prettier --write src/**/*.ts tests/**/*.ts", "prepublishOnly": "npm run build" }, "keywords": [ "flowlab", "data", "etl", "stream", "batch", "pipeline" ], "author": "luke king", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/countstarss/flowlab" }, "files": [ "dist/**/*", "README.md", "LICENSE" ], "peerDependencies": { "@prisma/client": "^5.0.0" }, "dependencies": { "@flowlab/core": "^1.0.0", "ioredis": "^5.6.0", "js-yaml": "^4.1.0", "kafkajs": "^2.2.4", "lodash": "^4.17.21", "mongodb": "^6.15.0", "pino": "^8.0.0", "pino-pretty": "^10.0.0", "uuid": "^11.1.0" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/js-yaml": "^4.0.5", "@types/kafkajs": "^1.8.2", "@types/node": "^20.0.0", "@types/pino": "^7.0.5", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.40.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-prettier": "^5.0.0", "jest": "^29.7.0", "p-limit": "^6.2.0", "prettier": "^3.0.0", "prisma": "^5.0.0", "ts-jest": "^29.3.0", "typescript": "^5.0.0", "zod": "^3.24.2" }, "engines": { "node": ">=18.0.0" } }