sequential-workflow-editor-model
Version:
This package contains the model for [Sequential Workflow Editor](https://github.com/nocode-js/sequential-workflow-editor).
75 lines • 1.75 kB
JSON
{
"name": "sequential-workflow-editor-model",
"version": "0.14.8",
"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"
}
}
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/nocode-js/sequential-workflow-editor.git"
},
"files": [
"lib/",
"dist/"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"prepare": "cp ../LICENSE LICENSE",
"clean": "rm -rf lib && rm -rf node_modules/.cache/rollup-plugin-typescript2",
"build": "yarn clean && rollup -c",
"start": "rollup -c --watch",
"eslint": "eslint ./src --ext .ts",
"prettier": "prettier --check ./src",
"prettier:fix": "prettier --write ./src",
"test:single": "jest",
"test": "jest --clearCache && jest --watchAll"
},
"dependencies": {
"sequential-workflow-model": "^0.2.0"
},
"peerDependencies": {
"sequential-workflow-model": "^0.2.0"
},
"devDependencies": {
"rollup": "^4.4.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"typescript": "^4.9.5",
"prettier": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"@types/jest": "^29.5.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0"
},
"keywords": [
"workflow",
"model",
"nocode",
"lowcode",
"flow"
]
}