UNPKG

@prostojs/wf

Version:

Generic workflow framework

82 lines (81 loc) 2.38 kB
{ "name": "@prostojs/wf", "version": "0.0.18", "description": "Generic workflow framework", "main": "dist/index.cjs", "module": "dist/index.mjs", "types": "dist/index.d.ts", "sideEffects": false, "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.cjs", "types": "./dist/index.d.ts" } }, "files": [ "dist" ], "scripts": { "build": "rollup -c rollup.config.js", "release": "node ./scripts/release.js", "test": "jest --runInBand", "test:cov": "jest --runInBand --coverage", "lint": "eslint --ext .ts src/**.ts --fix", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s", "version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md" }, "repository": { "type": "git", "url": "git+https://github.com/prostojs/wf.git" }, "keywords": [ "prostojs", "workflow", "wf" ], "buildOptions": { "name": "wf", "formats": [ "esm-bundler", "cjs" ] }, "dependencies": { "@prostojs/ftring": "^0.0.4" }, "gitHooks": { "commit-msg": "node scripts/verifyCommit.js" }, "author": "Artem Maltsev", "license": "MIT", "bugs": { "url": "https://github.com/prostojs/wf/issues" }, "homepage": "https://github.com/prostojs/wf#readme", "devDependencies": { "@prostojs/dye": "^0.3.0", "@rollup/plugin-commonjs": "^25.0.7", "@rollup/plugin-node-resolve": "^15.2.3", "@rollup/plugin-replace": "^5.0.5", "@types/jest": "^29.5.5", "@types/node": "^20.11.2", "@typescript-eslint/eslint-plugin": "^6.19.0", "conventional-changelog": "^3.1.24", "conventional-changelog-cli": "^2.1.1", "enquirer": "^2.4.1", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "execa": "^5.0.0", "jest": "^29.7.0", "minimist": "^1.2.8", "prettier": "^3.2.2", "rollup": "^4.9.5", "rollup-plugin-dts": "^6.1.0", "rollup-plugin-typescript2": "^0.36.0", "semver": "^7.5.4", "ts-jest": "^29.1.1", "typescript": "^5.2.2", "yorkie": "^2.0.0" } }