package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "camunda-bpmn-moddle",
  3. "version": "6.1.2",
  4. "description": "Camunda moddle extensions for BPMN 2.0",
  5. "scripts": {
  6. "all": "run-s lint test",
  7. "lint": "eslint .",
  8. "dev": "npm run test:browser -- --auto-watch --no-single-run",
  9. "test": "run-s test:*",
  10. "test:node": "mocha -r ./test/expect --reporter=spec \"test/!(browser)/**/*.js\"",
  11. "test:browser": "karma start karma.config.js"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/camunda/camunda-bpmn-moddle"
  16. },
  17. "keywords": [
  18. "bpmn",
  19. "moddle",
  20. "bpmn20",
  21. "camunda",
  22. "meta-model"
  23. ],
  24. "author": {
  25. "name": "Nico Rehwaldt",
  26. "url": "https://github.com/nikku"
  27. },
  28. "contributors": [
  29. {
  30. "name": "bpmn.io contributors",
  31. "url": "https://github.com/bpmn-io"
  32. }
  33. ],
  34. "license": "MIT",
  35. "devDependencies": {
  36. "bpmn-js": "^9.0.1",
  37. "bpmn-moddle": "^7.0.4",
  38. "chai": "^4.3.0",
  39. "eslint": "^7.19.0",
  40. "eslint-plugin-bpmn-io": "^0.12.0",
  41. "esm": "^3.2.25",
  42. "glob": "^7.1.6",
  43. "karma": "^6.2.0",
  44. "karma-chrome-launcher": "^3.1.0",
  45. "karma-env-preprocessor": "^0.1.1",
  46. "karma-mocha": "^2.0.1",
  47. "karma-sinon-chai": "^2.0.2",
  48. "karma-webpack": "^5.0.0",
  49. "mocha": "^8.2.1",
  50. "mocha-test-container-support": "^0.2.0",
  51. "npm-run-all": "^4.1.2",
  52. "p-series": "^2.1.0",
  53. "puppeteer": "^8.0.0",
  54. "raw-loader": "^4.0.2",
  55. "sinon": "^9.2.4",
  56. "sinon-chai": "^3.5.0",
  57. "webpack": "^5.26.3",
  58. "xsd-schema-validator": "^0.5.0"
  59. },
  60. "dependencies": {
  61. "min-dash": "^3.8.1"
  62. },
  63. "peerDependencies": {
  64. "bpmn-js": "^6.x || ^7.x || ^8.x || ^9.x",
  65. "diagram-js": "^5.x || ^6.x || ^7.x || ^8.x"
  66. },
  67. "files": [
  68. "lib",
  69. "resources",
  70. "index.js"
  71. ]
  72. }