bpmn-js-spiffworkflow/package.json

92 lines
2.6 KiB
JSON
Raw Normal View History

2022-06-07 18:16:49 +00:00
{
"name": "bpmn-js-spiffworkflow",
"version": "0.0.8",
2022-06-07 18:16:49 +00:00
"description": "Extensions and modifications of BPMN.js to improve BPMN development for SpiffWorkflow",
"scripts": {
"all": "run-s lint test build",
2022-06-07 18:16:49 +00:00
"build": "webpack --mode production",
"build:watch": "webpack --watch",
"dev": "run-p build:watch serve",
"serve": "sirv public --dev",
2023-11-16 16:18:00 +00:00
"lint": "./node_modules/.bin/eslint app *.js",
"lint:fix": "./node_modules/.bin/eslint --fix app *.js",
"start": "run-s build serve",
"test": "karma start karma.conf.js"
2022-06-07 18:16:49 +00:00
},
"repository": {
"type": "git",
"url": "https://github.com/sartography/bpmn-js-spiffworkflow"
},
"keywords": [
"bpmn",
"spiffworkflow"
2022-06-07 18:16:49 +00:00
],
"author": {
"name": "Dan Funk (Sartography)",
"url": "https://github.com/danfunk"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
2024-02-05 19:51:01 +00:00
"license": "LGPL",
2022-06-07 18:16:49 +00:00
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.17.12",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.2",
"@testing-library/preact": "^2.0.1",
"@testing-library/preact-hooks": "^1.1.0",
"@types/mocha": "^9.1.1",
"babel-loader": "^8.2.5",
"chai": "^4.3.6",
2022-06-07 18:16:49 +00:00
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.18.0",
"eslint_d": "^12.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-bpmn-io": "^0.14.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sonarjs": "^0.13.0",
"file-saver": "^2.0.5",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-env-preprocessor": "^0.1.1",
"karma-mocha": "^2.0.1",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^5.0.0",
"mocha": "^10.0.0",
"mocha-test-container-support": "^0.2.0",
2022-06-07 18:16:49 +00:00
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
2022-06-07 18:16:49 +00:00
"raw-loader": "^4.0.2",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0",
2022-06-07 18:16:49 +00:00
"sirv-cli": "^2.0.2",
"stringify": "^5.2.0",
2022-06-07 18:16:49 +00:00
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2"
},
"peerDependencies": {
2023-09-01 18:30:31 +00:00
"bpmn-js": "^13.0.0",
2022-10-31 21:12:32 +00:00
"bpmn-js-properties-panel": "*",
"diagram-js": "*"
},
"dependencies": {
"inherits": "^2.0.4",
"inherits-browser": "^0.0.1",
"min-dash": "^3.8.1",
"min-dom": "^3.2.1",
"moddle": "^5.0.3",
Feature/spiff message branch (#100) * Add new props from editor * Fix receive message * Handle no messages found * remove debounce * Spiff message : Custom MultiSelect Input * Add event for open json schema editor * Get Schemas Ids - Mock API * Implement MessageJsonSchemaSelect * Lint * Refactoring * Add some missing dependencies * Branch Refactoring * Fix broken tests clear extensions element on change message selected Fix Send Task Add Is Matching Correlation enabled Add Variable condition Move variable Move Payload List correlation props based on element AddMatching condition Array Branch Refactoring * Adding spiffworkflow namespace * Handle message APIs * hooking message button to post and listen to the event bus. * Fix Message Editor Button Labeling * load files with jsx as jsx w/ burnettk * updates to work with vite in the frontend w/ burnettk * Add Correlation Key * fix automatic deletion of messages&&correlationProps * Hide message on process level * Sync Messages and correlations on DeleteEvent * Fix deletion of correlation properties * Message Payload issue * Fix payload for message events * Fix matching condition * fix matching condition - css issue * Fire add new message event * Fix AddMessage event * Fix AddMessage event * Fix/message tests - duplicated correlations keys (#99) * Append correlation Properties in Launch editor event * Not allow two parent correlation keys * Fix Message tests #1 * fix broken tests * Add unit test for add message event * some updates while reviewing w/ burnettk --------- Co-authored-by: jasquat <jasquat@users.noreply.github.com> --------- Co-authored-by: Ayoub Ait Lachgar <44379029+theaubmov@users.noreply.github.com> Co-authored-by: Ayoub ait lachgar <ayoubaitlachgar98@gmail.com> Co-authored-by: Dan Funk <daniel.h.funk@gmail.com> Co-authored-by: jasquat <jasquat@users.noreply.github.com>
2024-06-10 16:00:11 +00:00
"nice-select2": "^2.1.0",
2024-04-19 01:39:58 +00:00
"react": "^18.2.0",
"react-dom": "18.2.0",
"tiny-svg": "^2.2.3"
2022-06-07 18:16:49 +00:00
}
}