package.json 450 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "bpmnlint-plugin-local",
  3. "version": "0.0.0",
  4. "description": "The bpmnlint local plug-in",
  5. "main": "index.js",
  6. "scripts": {
  7. "all": "npm test",
  8. "test": "mocha test.js"
  9. },
  10. "keywords": [
  11. "bpmnlint",
  12. "plugin"
  13. ],
  14. "devDependencies": {
  15. "bpmnlint": "^7.2.1",
  16. "chai": "^4.2.0",
  17. "mocha": "^9.1.3"
  18. },
  19. "dependencies": {
  20. "bpmnlint-utils": "^1.0.2"
  21. },
  22. "files": [
  23. "rules",
  24. "index.js"
  25. ]
  26. }