UNPKG

pipeproc

Version:

Multi-process log processing for nodejs

88 lines (87 loc) 2.12 kB
{ "name": "pipeproc", "version": "0.4.1", "license": "BSD-3-Clause", "author": { "name": "Zisis Maras", "email": "contact@zisismaras.me" }, "description": "Multi-process log processing for nodejs", "repository": "https://github.com/zisismaras/pipeproc", "homepage": "https://github.com/zisismaras/pipeproc", "main": "./lib/client/index.js", "typings": "./lib/client/index.d.ts", "files": [ "lib" ], "keywords": [ "log", "structured commit log", "kafka", "redis stream", "multi process" ], "scripts": { "test": "(tsc || echo \"compiled\") && jest --ci", "prepublishOnly": "rm -rf ./lib && tsc --build --clean && tsc --build && rm -rf ./lib/typings && cp -r ./src/typings ./lib/typings" }, "jest": { "transform": { "^.+\\.tsx?$": "ts-jest" }, "setupFilesAfterEnv": [ "jest-extended" ], "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", "moduleFileExtensions": [ "ts", "tsx", "js", "jsx", "json", "node" ], "testPathIgnorePatterns": [ "/node_modules", "/__tests__/client/keys/" ], "globals": { "ts-jest": { "diagnostics": false } } }, "devDependencies": { "@types/jest": "25.2.1", "@types/rimraf": "2.0.2", "@types/semver": "6.2.0", "eslint": "4.19.1", "eslint-config-google": "0.9.1", "jest": "25.5.4", "jest-extended": "0.11.5", "prettier": "1.14.0", "rimraf": "2.6.2", "semver": "6.3.0", "ts-jest": "25.4.0", "tslint": "5.11.0", "tslint-eslint-rules": "5.3.1", "tslint-microsoft-contrib": "5.1.0", "typescript": "~3.8.3" }, "dependencies": { "@types/async": "3.0.3", "@types/backoff": "2.5.1", "@types/debug": "0.0.30", "@types/leveldown": "4.0.2", "@types/node": "12.12.6", "@types/uuid": "3.4.3", "@types/forever-monitor": "1.7.4", "async": "3.1.0", "backoff": "2.5.0", "debug": "3.1.0", "forever-monitor": "1.7.1", "leveldown": "5.6.0", "memdown": "5.1.0", "uuid": "3.3.2" } }