UNPKG

open-lineage-client

Version:

TypeScript/JavaScript client for creating and sending OpenLineage standard events.

77 lines (76 loc) 1.89 kB
{ "name": "open-lineage-client", "version": "1.1.4", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "scripts": { "lint": "eslint .", "lint:fix": "eslint . --fix", "format": "prettier --write \"src/**/*.ts\"", "format:check": "prettier --check \"src/**/*.ts\"", "clean": "rm -rf dist", "test": "vitest", "coverage": "vitest run --coverage", "build": "npm run clean && tsc" }, "author": "Simon Valenta", "license": "ISC", "description": "TypeScript/JavaScript client for creating and sending OpenLineage standard events.", "keywords": [ "openlineage", "open-lineage", "lineage", "data lineage", "client", "typescript", "javascript" ], "repository": { "type": "git", "url": "git+https://github.com/valensim/OpenLineageJSClient.git" }, "homepage": "https://github.com/valensim/OpenLineageJSClient#readme", "bugs": { "url": "https://github.com/valensim/OpenLineageJSClient/issues" }, "devDependencies": { "@types/js-yaml": "^4.0.9", "@types/node": "^22.10.7", "@types/uuid": "^10.0.0", "@types/validator": "^13.12.2", "@typescript-eslint/eslint-plugin": "^8.22.0", "@typescript-eslint/parser": "^8.22.0", "@vitest/coverage-v8": "^3.0.4", "@vitest/runner": "^3.0.3", "axios": "^1.6.7", "dotenv": "^16.0.0", "eslint": "^9.19.0", "eslint-config-prettier": "^10.0.1", "eslint-plugin-prettier": "^5.2.3", "nock": "^13.0.0", "prettier": "^3.4.2", "typescript": "^5.7.3", "typescript-eslint": "^8.22.0", "uuid": "^9.0.1", "vitest": "^3.0.3" }, "dependencies": { "class-transformer": "^0.5.1", "ajv": "^8.17.1", "ajv-formats": "^3.0.1", "js-yaml": "^4.1.0", "validator": "^13.12.0" }, "files": [ "dist/" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.js" } } }