UNPKG

runflow

Version:

A fast and reliable flow engine for orchestration and more uses in *Node.js*

80 lines 1.93 kB
{ "name": "runflow", "version": "1.0.0", "description": "A fast and reliable flow engine for orchestration and more uses in *Node.js*", "keywords": [ "flow", "engine", "task", "dependency", "flowframework", "task-manager", "task-runner", "flowengine", "flow-engine", "flow-execution", "orchestration" ], "author": "xo-o <cloud@snapmotion.one> (https://github.com/xo-o)", "license": "MIT", "homepage": "https://runflowed.github.io/runflow", "repository": "github:runflowed/runflow", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "files": [ "dist" ], "config": { "maxPackagesNumber": 620, "maxSizeBites": 52428800, "allowedLicenseTypes": [ "permissive", "publicDomain", "uncategorized" ] }, "publishConfig": { "access": "public" }, "dependencies": { "debug": "^4.3.4", "flowed-st": "^1.0.6" }, "devDependencies": { "@biomejs/biome": "^1.5.3", "@types/debug": "^4.1.8", "@types/node": "^20.4.2", "@vitest/coverage-v8": "3.1.4", "coveralls": "^3.1.1", "ts-node": "^10.9.1", "tsup": "^8.5.0", "typescript": "^5.8.3", "vitest": "^3.1.4" }, "testen": { "node": ">=13 && <23" }, "scripts": { "build": "tsup", "build:watch": "tsup --watch", "start": "npm test", "test": "vitest", "test:watch": "vitest watch", "coverage": "vitest run --coverage", "coverage:send": "vitest run --coverage --reporter=text-lcov | coveralls", "posttest": "npm run lint", "lint": "biome check .", "lint:fix": "biome check --apply .", "format": "biome format .", "format:fix": "biome format --write .", "test:size": "npm-consider install --test" } }