redis-workflow
Version:
Simple Promise based multi-channel workflow rules engine using Redis backing
58 lines (57 loc) • 1.32 kB
JSON
{
"name": "redis-workflow",
"version": "0.5.1",
"description": "Simple Promise based multi-channel workflow rules engine using Redis backing",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/tsc",
"lint": "./node_modules/.bin/tslint -c tslint.json 'src/**/*.ts'",
"test": "./node_modules/.bin/jest",
"coverage": "./node_modules/.bin/jest --coverage"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"jest": "^23.6.0",
"tslint": "^5.11.0",
"typescript": "^3.2.1"
},
"dependencies": {
"@types/redis": "^2.8.6",
"events": "^3.0.0",
"mozjexl": "^1.1.6",
"redis": "^2.8.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikesparr/redis-workflow.git"
},
"keywords": [
"workflow",
"redis",
"rules",
"engine",
"flow",
"process",
"chain",
"task"
],
"author": "Mike Sparr",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikesparr/redis-workflow/issues"
},
"homepage": "https://github.com/mikesparr/redis-workflow#readme"
}