UNPKG

sequential-workflow-model

Version:

Extendable data model of sequential workflow.

61 lines (60 loc) 1.39 kB
{ "name": "sequential-workflow-model", "description": "Extendable data model of sequential workflow.", "version": "0.2.0", "homepage": "https://nocode-js.com/", "author": { "name": "NoCode JS", "url": "https://nocode-js.com/" }, "license": "MIT", "type": "module", "main": "./lib/esm/index.js", "types": "./lib/index.d.ts", "exports": { ".": { "types": { "require": "./lib/index.d.ts", "default": "./lib/index.d.ts" }, "default": { "require": "./lib/cjs/index.cjs", "default": "./lib/esm/index.js" } } }, "files": [ "lib/" ], "publishConfig": { "registry": "https://registry.npmjs.org/" }, "repository": { "type": "git", "url": "https://github.com/nocode-js/sequential-workflow-model.git" }, "scripts": { "clean": "rm -rf build && rm -rf lib && rm -rf node_modules/.cache/rollup-plugin-typescript2", "build": "yarn clean && rollup -c", "prettier": "prettier --check ./src", "prettier:fix": "prettier --write ./src", "test:single": "jest", "test": "jest --clearCache && jest --watchAll" }, "devDependencies": { "typescript": "^4.9.5", "rollup-plugin-dts": "^5.3.0", "rollup-plugin-typescript2": "^0.35.0", "rollup": "^3.25.3", "prettier": "^2.8.8", "@types/jest": "^29.5.2", "jest": "^29.5.0", "ts-jest": "^29.1.0" }, "keywords": [ "workflow", "nocode", "state machine", "data model" ] }