@5minds/processcube_engine
Version:
The ProcessCube Engine. Stores and executes BPMNs.
150 lines (149 loc) • 8.33 kB
JSON
{
"name": "@5minds/processcube_engine",
"version": "18.6.12",
"description": "The ProcessCube Engine. Stores and executes BPMNs.",
"bin": {
"atlas-engine": "./bin/index.js",
"processcube-engine": "./bin/index.js",
"pc-engine": "./bin/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.12.0"
},
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"keywords": [
"bpmn",
"nodejs",
"workflows",
"processautomation",
"postgres",
"sqlite",
"sqlserver"
],
"repository": {
"type": "git",
"url": "git+https://github.com/5minds/ProcessCube.Engine.git"
},
"author": {
"name": "5Minds IT-Solutions GmbH & Co. KG",
"email": "info@5minds.de",
"url": "https://5minds.de/"
},
"files": [
"bin",
"dist",
"configs",
"swagger.ejs",
"docs/swagger",
"LICENSE",
"package.json",
"README.md"
],
"maintainers": [
"Alexander Kasten <alexander.kasten@5minds.de>",
"Christian Werner <christian.werner@5minds.de>"
],
"license": "MIT",
"homepage": "https://github.com/5minds/ProcessCube.Engine#readme",
"bugs": {
"url": "https://github.com/5minds/ProcessCube.Engine/issues"
},
"scripts": {
"prepare": "npm run clean-build",
"clean": "rm -rf dist",
"clean-build": "npm run clean && npm run build",
"build": "tsc",
"lint": "prettier --write --config ./.prettierrc.json ./src ./test/*/*/*.ts",
"generate-swagger-docs": "node ./bin/generate_swagger.js",
"start": "node ./bin/index.js",
"start-mssql": "CONFIG_PATH=./configs/mssql.json node ./bin/index.js",
"start-mysql": "CONFIG_PATH=./configs/mysql.json node ./bin/index.js",
"start-postgres": "CONFIG_PATH=./configs/postgres.json node ./bin/index.js",
"start-dev": "cross-env NODE_ENV=dev DISABLE_CLAIM_CHECKS=true node ./bin/index.js",
"test:clean-build": "rm -rf dist_test && tsc -p ./tsconfig_test.json",
"test:integration": "npm run test:integration:sqlite",
"test:integration:debug": "npm run test:clean-build && cross-env CONFIG_PATH=./configs/test-postgres.json METRICS_ENABLED=false mocha --inspect-brk -t 75000 \"./dist_test/test/**/*.spec.js\"",
"test:integration:mssql": "npm run test:integration:server:mssql && npm run test:integration:extensions && npm run test:integration:core:mssql && npm run test:integration:api:mssql",
"test:integration:mysql": "npm run test:integration:server:mysql && npm run test:integration:extensions && npm run test:integration:core:mysql && npm run test:integration:api:mysql",
"test:integration:postgres": "npm run test:integration:server:postgres && npm run test:integration:extensions && npm run test:integration:core:postgres && npm run test:integration:api:postgres",
"test:integration:sqlite": "npm run test:integration:server:sqlite && npm run test:integration:extensions && npm run test:integration:core:sqlite && npm run test:integration:api:sqlite",
"test:integration:server:sqlite": "npm run test:clean-build && cross-env NODE_ENV=test METRICS_ENABLED=false IS_INTEGRATION_TEST_RUN=true CONFIG_PATH=./configs/test-sqlite.json mocha -t 50000 \"./dist_test/test/server/**/*.spec.js\" --retries 3 --bail --exit",
"test:integration:server:postgres": "npm run test:clean-build && cross-env NODE_ENV=test METRICS_ENABLED=false IS_INTEGRATION_TEST_RUN=true CONFIG_PATH=./configs/test-postgres.json mocha -t 50000 \"./dist_test/test/server/**/*.spec.js\" --retries 3 --bail --exit",
"test:integration:server:mysql": "npm run test:clean-build && cross-env NODE_ENV=test METRICS_ENABLED=false IS_INTEGRATION_TEST_RUN=true CONFIG_PATH=./configs/test-mysql.json mocha -t 50000 \"./dist_test/test/server/**/*.spec.js\" --retries 3 --bail --exit",
"test:integration:server:mssql": "npm run test:clean-build && cross-env NODE_ENV=test METRICS_ENABLED=false IS_INTEGRATION_TEST_RUN=true CONFIG_PATH=./configs/test-mssql.json mocha -t 50000 \"./dist_test/test/server/**/*.spec.js\" --retries 3 --bail --exit",
"test:integration:server": "npm run test:clean-build && cross-env NODE_ENV=test METRICS_ENABLED=false IS_INTEGRATION_TEST_RUN=true CONFIG_PATH=./configs/test-sqlite.json mocha -t 50000 \"./dist_test/test/server/**/*.spec.js\" --retries 3 --bail --exit",
"test:integration:extensions": "npm run test:clean-build && cross-env NODE_ENV=test METRICS_ENABLED=false IS_INTEGRATION_TEST_RUN=true CONFIG_PATH=./configs/test-sqlite.json mocha -t 50000 \"./dist_test/test/extensions/**/*.spec.js\" --retries 3 --bail --exit",
"test:integration:api:mssql": "npm run test:clean-build && cross-env NODE_ENV=test METRICS_ENABLED=false IS_INTEGRATION_TEST_RUN=true CONFIG_PATH=./configs/test-mssql.json mocha -t 50000 \"./dist_test/test/api/**/*.spec.js\" --retries 3 --bail --exit",
"test:integration:api:mysql": "npm run test:clean-build && cross-env NODE_ENV=test METRICS_ENABLED=false IS_INTEGRATION_TEST_RUN=true CONFIG_PATH=./configs/test-mysql.json mocha -t 50000 \"./dist_test/test/api/**/*.spec.js\" --retries 3 --bail --exit",
"test:integration:api:postgres": "npm run test:clean-build && cross-env NODE_ENV=test METRICS_ENABLED=false IS_INTEGRATION_TEST_RUN=true CONFIG_PATH=./configs/test-postgres.json mocha -t 50000 \"./dist_test/test/api/**/*.spec.js\" --retries 3 --bail --exit",
"test:integration:api:sqlite": "npm run test:clean-build && cross-env NODE_ENV=test METRICS_ENABLED=false IS_INTEGRATION_TEST_RUN=true CONFIG_PATH=./configs/test-sqlite.json mocha -t 50000 \"./dist_test/test/api/**/*.spec.js\" --retries 3 --bail --exit",
"test:integration:core:mssql": "npm run test:clean-build && cross-env NODE_ENV=test METRICS_ENABLED=false IS_INTEGRATION_TEST_RUN=true CONFIG_PATH=./configs/test-mssql.json mocha -t 50000 \"./dist_test/test/core/**/*.spec.js\" --retries 3 --bail --exit",
"test:integration:core:mysql": "npm run test:clean-build && cross-env NODE_ENV=test METRICS_ENABLED=false IS_INTEGRATION_TEST_RUN=true CONFIG_PATH=./configs/test-mysql.json mocha -t 50000 \"./dist_test/test/core/**/*.spec.js\" --retries 3 --bail --exit",
"test:integration:core:postgres": "npm run test:clean-build && cross-env NODE_ENV=test METRICS_ENABLED=false IS_INTEGRATION_TEST_RUN=true CONFIG_PATH=./configs/test-postgres.json mocha -t 50000 \"./dist_test/test/core/**/*.spec.js\" --retries 3 --bail --exit",
"test:integration:core:sqlite": "npm run test:clean-build && cross-env NODE_ENV=test METRICS_ENABLED=false IS_INTEGRATION_TEST_RUN=true CONFIG_PATH=./configs/test-sqlite.json mocha -t 50000 \"./dist_test/test/core/**/*.spec.js\" --retries 3 --bail --exit"
},
"dependencies": {
"@5minds/processcube_engine_sdk": "6.0.10",
"ajv": "^8.16.0",
"async-lock": "^1.4.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cron-parser": "^4.9.0",
"cross-env": "7.0.3",
"cross-fetch": "^4.0.0",
"dayjs": "^1.11.10",
"ejs": "^3.1.10",
"express": "^5.0.1",
"helmet": "8.0.0",
"inversify": "6.0.2",
"jose": "^5.8.0",
"jsonwebtoken": "9.0.2",
"lodash": "^4.17.21",
"minimist": "1.2.8",
"mysql2": "3.11.3",
"nconf": "^0.12.0",
"node-schedule": "2.1.1",
"openapi-doc": "^5.0.4",
"pg": "^8.11.5",
"pg-hstore": "^2.3.4",
"pidusage": "^3.0.2",
"reflect-metadata": "0.2.2",
"sequelize": "^6.37.2",
"sequelize-typescript": "^2.1.6",
"ses": "^1.5.0",
"socket.io": "4.8.0",
"sqlite3": "^5.1.7",
"string-hash": "^1.1.3",
"swagger-ui-dist": "5.18.2",
"tedious": "19.0.0",
"umzug": "3.8.2",
"uuid": "^10.0.0",
"win-ca": "~3.5.0"
},
"devDependencies": {
"@5minds/processcube_engine_client": "5.3.0",
"@trivago/prettier-plugin-sort-imports": "^5.0.0",
"@types/async-lock": "^1.4.2",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.17.7",
"@types/minimist": "^1.2.5",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.15",
"@types/pidusage": "^2.0.5",
"@types/validator": "^13.12.0",
"@types/wtfnode": "^0.7.3",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"should": "^13.2.3",
"swagger-jsdoc": "^6.2.8",
"ts-mocha": "^10.0.0",
"typescript": "5.6.2",
"wtfnode": "^0.9.3"
}
}