caminho
Version:
Tool for creating efficient data pipelines in a JavaScript environment
75 lines (74 loc) • 1.92 kB
JSON
{
"name": "caminho",
"version": "1.7.4",
"description": "Tool for creating efficient data pipelines in a JavaScript environment",
"main": "./dist/cjs/index.js",
"module": "./dist/esm5/index.js",
"es2015": "./dist/esm/index.js",
"types": "index.d.ts",
"typesVersions": {
">=4.2": {
"*": [
"dist/types/*"
]
}
},
"sideEffects": false,
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"node": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js",
"es2015": "./dist/esm/index.js",
"default": "./dist/esm5/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"compile": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.esm5.json ./tsconfig.types.json",
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./dist",
"test": "jest --coverage",
"test:watch": "jest -o --watch",
"lint": "eslint ./src ./test ./benchmark ./eslint.config.mjs",
"lint:fix": "npm run lint -- --fix",
"benchmark:parallel": "npx ts-node benchmark/parallel.benchmark.ts",
"benchmark:subflow": "npx ts-node benchmark/subFlow.benchmark.ts",
"prepublishOnly": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/pedrokehl/caminho"
},
"keywords": [
"data",
"pipeline",
"javascript",
"typescript",
"concurrency",
"parallel",
"backpressure",
"dataprocessing",
"functional",
"reactive"
],
"files": [
"README.md",
"dist/**/*"
],
"author": "Pedro Kehl",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.9",
"eslint": "^9.21.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.6",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0"
},
"dependencies": {
"rxjs": "^7.8.2"
}
}