UNPKG

@rudderstack/workflow-engine

Version:
90 lines (89 loc) 2.76 kB
{ "name": "@rudderstack/workflow-engine", "version": "0.8.20", "description": "A generic workflow execution engine", "main": "build/index.js", "types": "build/index.d.ts", "publishConfig": { "access": "public" }, "scripts": { "test": "jest --coverage --verbose", "test:no-logging": "LOG_LEVEL=100 jest --coverage --verbose", "build": "tsc --project tsconfig.build.json", "clean": "rm -rf build", "build:clean": "npm run clean && npm run build", "lint:fix": "eslint . --fix", "lint:check": "eslint . || exit 1", "lint-staged": "lint-staged", "format": "prettier --write '**/*.ts' '**/*.json'", "lint": "npm run format && npm run lint:fix", "prepare": "husky install", "jest:scenarios": "jest e2e.test.ts --verbose", "test:scenario": "jest test/scenario.test.ts --verbose", "test:stryker": "stryker run", "check:lint": "eslint . -f json -o reports/eslint.json || exit 0" }, "repository": { "type": "git", "url": "git+https://github.com/rudderlabs/rudder-workflow-engine.git" }, "keywords": [ "rudder", "rudderstack", "cdp", "workflow", "engine" ], "author": "RudderStack", "license": "MIT", "bugs": { "url": "https://github.com/rudderlabs/rudder-workflow-engine/issues" }, "homepage": "https://github.com/rudderlabs/rudder-workflow-engine#readme", "devDependencies": { "@babel/eslint-parser": "^7.19.1", "@commitlint/cli": "^17.4.4", "@commitlint/config-conventional": "^17.4.4", "@stryker-mutator/core": "^6.4.1", "@types/jest": "^29.4.0", "@types/lodash": "^4.14.197", "@types/mocha": "^10.0.1", "@types/node": "^18.14.6", "@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/parser": "^5.62.0", "commander": "^10.0.0", "eslint": "^8.35.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-config-airbnb-typescript": "^17.1.0", "eslint-config-prettier": "^8.7.0", "eslint-config-standard-with-typescript": "^34.0.0", "eslint-plugin-import": "^2.27.5", "eslint-plugin-promise": "^6.1.1", "eslint-plugin-sonarjs": "^0.23.0", "eslint-plugin-unused-imports": "^2.0.0", "husky": "^8.0.3", "jest": "^29.4.3", "jest-html-reporter": "^3.10.2", "lint-staged": "^15.2.10", "prettier": "^2.8.4", "ts-jest": "^29.0.5", "ts-node": "^10.9.1", "typescript": "^4.9.5" }, "dependencies": { "@aws-crypto/sha256-js": "^5.2.0", "@rudderstack/json-template-engine": "^0.19.5", "jsonata": "^2.0.5", "lodash": "^4.17.21", "object-sizeof": "^2.6.5", "yaml": "^2.6.0" }, "lint-staged": { "*.(ts|json|yaml)": "prettier --write" }, "files": [ "build/**/*.[jt]s", "CHANGELOG.md" ] }