UNPKG

@jescrich/nestjs-workflow

Version:
102 lines (101 loc) 2.96 kB
{ "name": "@jescrich/nestjs-workflow", "version": "1.0.2", "description": "Workflow and State Machines for NestJS", "license": "MIT", "author": "José Escrich", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "readme": "README.md", "private": false, "files": [ "./dist/**" ], "scripts": { "prebuild": "npm run clean", "build": "tsc -p tsconfig.build.json", "clean": "del-cli -f \"./dist\" && del-cli -f \"./*.tsbuildinfo\"", "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", "test": "jest --config jest.config.cjs --no-watchman ", "test:watch": "jest --watch --config jest.config.cjs --no-watchman", "test:cov": "jest --coverage --config jest.config.cjs --no-watchman", "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", "test:e2e": "jest --config ./test/jest-e2e.json" }, "peerDependencies": { "@nestjs/axios": "^4.0.0", "@nestjs/common": "^11.0.1", "@nestjs/core": "^11.0.1", "@nestjs/jwt": "^11.0.0", "@nestjs/microservices": "^11.0.1", "@nestjs/platform-express": "^11.0.1", "@nestjs/swagger": "^11.0.2", "@nestjs/terminus": "^10.0.1", "reflect-metadata": "^0.2.2", "rxjs": "^7.8.1" }, "dependencies": { "@nestjs/common": "^11.0.1", "@nestjs/core": "^11.0.1", "kafkajs": "^2.2.4", "reflect-metadata": "^0.2.2", "rxjs": "^7.8.2" }, "devDependencies": { "@golevelup/ts-jest": "^0.6.2", "@nestjs/testing": "^11.0.11", "@types/chai": "^5.0.1", "@types/jest": "^29.5.14", "@types/mocha": "^10.0.10", "@types/node": "^22.10.7", "@types/supertest": "^6.0.2", "@typescript-eslint/eslint-plugin": "^8.20.0", "@typescript-eslint/parser": "^8.20.0", "chai": "^5.2.0", "del-cli": "^6.0.0", "eslint": "^9.18.0", "eslint-config-prettier": "^10.0.1", "eslint-plugin-prettier": "^5.2.3", "jest": "^29.5.0", "mocha": "^11.1.0", "prettier": "^3.4.2", "source-map-support": "^0.5.21", "stripe": "^17.7.0", "supertest": "^7.0.0", "ts-jest": "^29.2.5", "ts-loader": "^9.5.2", "ts-node": "^10.9.2", "tsconfig-paths": "^4.2.0", "typescript": "^5.7.3" }, "_moduleAliases": { "@this/*": "*" }, "keywords": [ "nestjs", "workflow", "state-machine", "fsm", "finite-state-machine", "typescript", "event-driven", "kafka", "microservices", "process-automation", "business-process", "workflow-engine", "state-management", "transition", "nodejs" ], "repository": { "type": "git", "url": "https://github.com/jescrich/nestjs-workflow.git" }, "bugs": { "url": "https://github.com/jescrich/nestjs-workflow/issues" }, "homepage": "https://github.com/jescrich/nestjs-workflow#readme" }