package.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. {
  2. "name": "bpmn-js-properties-panel",
  3. "version": "1.4.0",
  4. "description": "A simple properties panel for bpmn-js",
  5. "files": [
  6. "dist"
  7. ],
  8. "scripts": {
  9. "all": "run-s lint test distro",
  10. "distro": "run-s build test:build",
  11. "build": "run-p bundle",
  12. "bundle": "rollup -c",
  13. "bundle:watch": "rollup -c -w",
  14. "lint": "eslint .",
  15. "dev": "npm test -- --auto-watch --no-single-run",
  16. "test": "karma start karma.config.js",
  17. "test:build": "mocha --reporter=spec --recursive test/distro",
  18. "start": "npm run start:cloud",
  19. "start:cloud": "cross-env SINGLE_START=cloud npm run dev",
  20. "start:platform": "cross-env SINGLE_START=platform npm run dev",
  21. "start:bpmn": "cross-env SINGLE_START=bpmn npm run dev",
  22. "start:templates": "cross-env SINGLE_START=templates npm run dev",
  23. "start:cloud-templates": "cross-env SINGLE_START=cloud-templates npm run dev",
  24. "prepare": "run-s bundle"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "https://github.com/bpmn-io/bpmn-js-properties-panel"
  29. },
  30. "keywords": [
  31. "bpmn-io",
  32. "bpmn-js",
  33. "properties",
  34. "properties-panel"
  35. ],
  36. "main": "dist/index.js",
  37. "module": "dist/index.esm.js",
  38. "umd:main": "dist/bpmn-js-properties-panel.umd.js",
  39. "author": {
  40. "name": "Nico Rehwaldt",
  41. "url": "https://github.com/nikku"
  42. },
  43. "contributors": [
  44. {
  45. "name": "bpmn.io contributors",
  46. "url": "https://github.com/bpmn-io"
  47. }
  48. ],
  49. "license": "MIT",
  50. "dependencies": {
  51. "@bpmn-io/element-templates-validator": "^0.9.0",
  52. "@bpmn-io/extract-process-variables": "^0.5.0",
  53. "array-move": "^3.0.1",
  54. "classnames": "^2.3.1",
  55. "ids": "^1.0.0",
  56. "min-dash": "^3.8.1",
  57. "min-dom": "^3.1.3",
  58. "preact-markup": "^2.1.1",
  59. "semver-compare": "^1.0.0"
  60. },
  61. "devDependencies": {
  62. "@babel/core": "^7.14.3",
  63. "@babel/plugin-transform-react-jsx": "^7.14.3",
  64. "@bpmn-io/element-template-chooser": "^0.0.5",
  65. "@bpmn-io/element-templates-icons-renderer": "^0.1.2",
  66. "@bpmn-io/properties-panel": "^0.18.0",
  67. "@rollup/plugin-alias": "^3.1.2",
  68. "@rollup/plugin-babel": "^5.3.0",
  69. "@rollup/plugin-commonjs": "^19.0.0",
  70. "@rollup/plugin-json": "^4.1.0",
  71. "@rollup/plugin-node-resolve": "^13.0.0",
  72. "@testing-library/preact": "^2.0.1",
  73. "@testing-library/preact-hooks": "^1.1.0",
  74. "axe-core": "^4.4.2",
  75. "babel-loader": "^8.2.2",
  76. "bpmn-js": "9.3.1",
  77. "bpmn-moddle": "^7.1.2",
  78. "camunda-bpmn-js-behaviors": "^0.1.0",
  79. "camunda-bpmn-moddle": "^6.1.2",
  80. "chai": "^4.3.4",
  81. "copy-webpack-plugin": "^9.0.0",
  82. "cross-env": "^7.0.3",
  83. "css-loader": "^5.2.6",
  84. "diagram-js": "^8.6.0",
  85. "eslint": "^7.32.0",
  86. "eslint-plugin-bpmn-io": "^0.13.0",
  87. "eslint-plugin-import": "^2.23.4",
  88. "eslint-plugin-react-hooks": "^4.2.0",
  89. "istanbul-instrumenter-loader": "^3.0.1",
  90. "karma": "^6.3.20",
  91. "karma-chrome-launcher": "^3.1.0",
  92. "karma-coverage": "^2.0.3",
  93. "karma-debug-launcher": "0.0.4",
  94. "karma-env-preprocessor": "^0.1.1",
  95. "karma-mocha": "^2.0.1",
  96. "karma-sinon-chai": "^2.0.2",
  97. "karma-webpack": "^5.0.0",
  98. "mocha": "^9.2.0",
  99. "mocha-test-container-support": "^0.2.0",
  100. "npm-run-all": "^4.1.5",
  101. "puppeteer": "^10.0.0",
  102. "raw-loader": "^4.0.2",
  103. "react-svg-loader": "^3.0.3",
  104. "rollup": "^2.52.6",
  105. "rollup-plugin-copy": "^3.4.0",
  106. "rollup-plugin-react-svg": "^3.0.3",
  107. "sinon": "^11.1.1",
  108. "sinon-chai": "^3.7.0",
  109. "sirv-cli": "^1.0.12",
  110. "webpack": "^5.38.1",
  111. "zeebe-bpmn-moddle": "^0.12.1"
  112. },
  113. "peerDependencies": {
  114. "bpmn-js": "8.x || 9.x",
  115. "camunda-bpmn-js-behaviors": "0.1.x",
  116. "diagram-js": "7.x || 8.x",
  117. "@bpmn-io/properties-panel": "0.18.x"
  118. }
  119. }