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.8.3", "description": "A fast and reliable flow manager and task runner for Node.js and web browsers", "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": "https://daniel-duarte.github.io/flowed", "repository": "github:daniel-duarte/flowed", "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 run bundle && npm test && git status", "prebundle": "npm run build", "bundle": "webpack", "postbundle": "mkdir -p dist/lib && cp web/flowed.js dist/lib/flowed.js" }, "config": { "maxPackagesNumber": 610, "maxSizeBites": 52428800, "allowedLicenseTypes": [ "permissive", "publicDomain", "uncategorized" ] }, "main": "dist/index.js", "browser": "dist/lib/flowed.js", "files": [ "dist" ], "dependencies": { "@types/debug": "^4.1.5", "debug": "^4.1.1", "flowed-st": "^1.0.2" }, "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.0", "@types/chai": "^4.2.6", "@types/mocha": "^7.0.1", "@types/node": "^13.1.1", "chai": "^4.2.0", "coveralls": "^3.0.9", "mocha": "^7.0.1", "nyc": "^15.0.0", "prettier": "^1.19.1", "ts-node": "^8.5.4", "tslint": "^6.0.0", "tslint-config-prettier": "^1.18.0", "typescript": "^3.7.4", "webpack": "^4.39.3", "webpack-cli": "^3.3.8" }, "nyc": { "extends": "@istanbuljs/nyc-config-typescript", "all": true, "exclude": [ "test", "coverage", "dist", "*.js", "web/flowed.js" ], "check-coverage": true, "skip-full": true, "reporter": [ "text" ], "branches": 70, "functions": 50, "lines": 85, "statements": 85 }}