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.3.2", "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> (https://github.com/daniel-duarte)", "license": "MIT", "homepage": "http://tiny.cc/flowed", "repository": "github:daniel-duarte/flowed", "main": "dist/index.js", "scripts": { "build": "tsc", "build:watch": "npm run build -- --watch", "start": "npm test", "test": "nyc mocha --require ts-node/register test/*.ts", "coverage": "nyc report", "coverage:send": "nyc report --reporter=text-lcov | coveralls", "posttest": "npm run lint", "lint": "tslint -p tsconfig.json -t verbose && tslint -p tsconfig.test.json -t verbose", "format": "tslint -p tsconfig.json -t verbose --fix && tslint -p tsconfig.test.json -t verbose --fix && prettier --write \"src/**/*.ts\" \"src/**/*.js\" && prettier --write \"test/**/*.ts\" \"test/**/*.js\"", "release:prepare": "./ops/updateSonarProps.sh && rm -rf ./dist ./node_modules package-lock.json && npm install && npm-consider install --test && npm run format && npm run build && npm test && git status" }, "config": { "maxPackagesNumber": 300, "maxSizeBites": 52428800, "allowedLicenseTypes": [ "permissive", "publicDomain", "uncategorized" ] }, "files": [ "dist" ], "dependencies": { "@types/debug": "^4.1.5", "debug": "^4.1.1" }, "devDependencies": { "@istanbuljs/nyc-config-typescript": "^0.1.3", "@types/chai": "^4.2.0", "@types/mocha": "^5.2.7", "@types/node": "^12.7.8", "chai": "^4.2.0", "coveralls": "^3.0.6", "mocha": "^6.2.1", "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.6.2" }, "nyc": { "extends": "@istanbuljs/nyc-config-typescript", "all": true, "reporter": [ "text" ] }}