UNPKG

execution-engine

Version:

A TypeScript library for tracing and visualizing code execution workflows.

70 lines (69 loc) 2.07 kB
{ "name": "execution-engine", "version": "3.5.0", "description": "A TypeScript library for tracing and visualizing code execution workflows.", "main": "dist/index.js", "types": "dist/index.d.ts", "engines": { "node": ">=18.0.0" }, "files": [ "dist", "index.js" ], "scripts": { "build": "npm run generate-barrels && tsc", "test": "jest", "examples": "for file in examples/*.ts; do ts-node \"$file\"; done\n", "lint": "eslint src --fix", "format": "prettier --write src/**/*.ts", "prepublishOnly": "npm run build", "prepare": "npm audit", "commitlint": "commitlint --edit", "generate-barrels": "barrelsby --directory src --recursive --delete --exclude \"common/utils\" --exclude \"\\\\.spec\\\\.ts$\" --singleQuotes" }, "repository": { "type": "git", "url": "https://github.com/tabkram/execution-engine.git" }, "keywords": [ "typescript", "execution", "execution-engine", "workflow", "workflow-engine", "trace", "json", "graph", "visualization" ], "author": "Akram TABKA", "license": "MIT", "bugs": { "url": "https://github.com/tabkram/execution-engine/issues" }, "homepage": "https://github.com/tabkram/execution-engine#readme", "devDependencies": { "@commitlint/cli": "^19.7.1", "@commitlint/config-conventional": "^19.7.1", "@stylistic/eslint-plugin": "^4.2.0", "@types/jest": "^29.5.14", "@typescript-eslint/eslint-plugin": "^8.24.0", "@typescript-eslint/parser": "^8.24.0", "barrelsby": "^2.8.1", "conventional-changelog-cli": "^5.0.0", "conventional-changelog-conventionalcommits": "^8.0.0", "eslint": "^9.20.1", "eslint-config-prettier": "^10.0.1", "eslint-plugin-check-file": "^3.1.0", "eslint-plugin-import": "^2.31.0", "eslint-plugin-prettier": "^5.2.3", "eslint-plugin-unused-imports": "^4.1.4", "husky": "^9.1.7", "jest": "^29.7.0", "prettier": "^3.5.1", "ts-jest": "^29.2.5", "typescript": "^5.7.3", "typescript-eslint": "^8.24.1" } }