Skip to main content
Module

x/flowed/package.json

A fast and reliable flow engine for orchestration and more uses in Node.js, Deno and the browser
Go to Latest
File
{ "name": "flowed", "version": "1.1.0", "description": "A fast and reliable flow manager for JS and TS", "keywords": [ "flow", "engine", "task", "dependency", "flowframework", "task-manager", "task-runner", "flowengine", "flow-engine", "flow-execution" ], "author": "Daniel Duarte <danieldd.ar@gmail.com>", "license": "MIT", "repository": "https://github.com/daniel-duarte/flowed", "main": "dist/index.js", "scripts": { "build": "tsc", "start": "npm test", "test": "mocha --require ts-node/register test/*.ts", "posttest": "npm run lint", "lint": "tslint -p tsconfig.json -t verbose", "format": "tslint -p tsconfig.json -t verbose --fix && prettier --write \"src/**/*.ts\" \"src/**/*.js\" && prettier --write \"test/**/*.ts\" \"test/**/*.js\"" }, "files": [ "dist" ], "dependencies": { "@types/debug": "^4.1.5", "debug": "^4.1.1" }, "devDependencies": { "@types/chai": "^4.2.0", "@types/mocha": "^5.2.7", "@types/node": "^12.7.2", "chai": "^4.2.0", "mocha": "^6.2.0", "nyc": "^14.1.1", "prettier": "^1.18.2", "ts-node": "^8.3.0", "tslint": "^5.19.0", "tslint-config-prettier": "^1.18.0", "typescript": "^3.5.3" }}