123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- {
- "name": "bpmn-js-properties-panel",
- "version": "1.4.0",
- "description": "A simple properties panel for bpmn-js",
- "files": [
- "dist"
- ],
- "scripts": {
- "all": "run-s lint test distro",
- "distro": "run-s build test:build",
- "build": "run-p bundle",
- "bundle": "rollup -c",
- "bundle:watch": "rollup -c -w",
- "lint": "eslint .",
- "dev": "npm test -- --auto-watch --no-single-run",
- "test": "karma start karma.config.js",
- "test:build": "mocha --reporter=spec --recursive test/distro",
- "start": "npm run start:cloud",
- "start:cloud": "cross-env SINGLE_START=cloud npm run dev",
- "start:platform": "cross-env SINGLE_START=platform npm run dev",
- "start:bpmn": "cross-env SINGLE_START=bpmn npm run dev",
- "start:templates": "cross-env SINGLE_START=templates npm run dev",
- "start:cloud-templates": "cross-env SINGLE_START=cloud-templates npm run dev",
- "prepare": "run-s bundle"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/bpmn-io/bpmn-js-properties-panel"
- },
- "keywords": [
- "bpmn-io",
- "bpmn-js",
- "properties",
- "properties-panel"
- ],
- "main": "dist/index.js",
- "module": "dist/index.esm.js",
- "umd:main": "dist/bpmn-js-properties-panel.umd.js",
- "author": {
- "name": "Nico Rehwaldt",
- "url": "https://github.com/nikku"
- },
- "contributors": [
- {
- "name": "bpmn.io contributors",
- "url": "https://github.com/bpmn-io"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "@bpmn-io/element-templates-validator": "^0.9.0",
- "@bpmn-io/extract-process-variables": "^0.5.0",
- "array-move": "^3.0.1",
- "classnames": "^2.3.1",
- "ids": "^1.0.0",
- "min-dash": "^3.8.1",
- "min-dom": "^3.1.3",
- "preact-markup": "^2.1.1",
- "semver-compare": "^1.0.0"
- },
- "devDependencies": {
- "@babel/core": "^7.14.3",
- "@babel/plugin-transform-react-jsx": "^7.14.3",
- "@bpmn-io/element-template-chooser": "^0.0.5",
- "@bpmn-io/element-templates-icons-renderer": "^0.1.2",
- "@bpmn-io/properties-panel": "^0.18.0",
- "@rollup/plugin-alias": "^3.1.2",
- "@rollup/plugin-babel": "^5.3.0",
- "@rollup/plugin-commonjs": "^19.0.0",
- "@rollup/plugin-json": "^4.1.0",
- "@rollup/plugin-node-resolve": "^13.0.0",
- "@testing-library/preact": "^2.0.1",
- "@testing-library/preact-hooks": "^1.1.0",
- "axe-core": "^4.4.2",
- "babel-loader": "^8.2.2",
- "bpmn-js": "9.3.1",
- "bpmn-moddle": "^7.1.2",
- "camunda-bpmn-js-behaviors": "^0.1.0",
- "camunda-bpmn-moddle": "^6.1.2",
- "chai": "^4.3.4",
- "copy-webpack-plugin": "^9.0.0",
- "cross-env": "^7.0.3",
- "css-loader": "^5.2.6",
- "diagram-js": "^8.6.0",
- "eslint": "^7.32.0",
- "eslint-plugin-bpmn-io": "^0.13.0",
- "eslint-plugin-import": "^2.23.4",
- "eslint-plugin-react-hooks": "^4.2.0",
- "istanbul-instrumenter-loader": "^3.0.1",
- "karma": "^6.3.20",
- "karma-chrome-launcher": "^3.1.0",
- "karma-coverage": "^2.0.3",
- "karma-debug-launcher": "0.0.4",
- "karma-env-preprocessor": "^0.1.1",
- "karma-mocha": "^2.0.1",
- "karma-sinon-chai": "^2.0.2",
- "karma-webpack": "^5.0.0",
- "mocha": "^9.2.0",
- "mocha-test-container-support": "^0.2.0",
- "npm-run-all": "^4.1.5",
- "puppeteer": "^10.0.0",
- "raw-loader": "^4.0.2",
- "react-svg-loader": "^3.0.3",
- "rollup": "^2.52.6",
- "rollup-plugin-copy": "^3.4.0",
- "rollup-plugin-react-svg": "^3.0.3",
- "sinon": "^11.1.1",
- "sinon-chai": "^3.7.0",
- "sirv-cli": "^1.0.12",
- "webpack": "^5.38.1",
- "zeebe-bpmn-moddle": "^0.12.1"
- },
- "peerDependencies": {
- "bpmn-js": "8.x || 9.x",
- "camunda-bpmn-js-behaviors": "0.1.x",
- "diagram-js": "7.x || 8.x",
- "@bpmn-io/properties-panel": "0.18.x"
- }
- }
|