-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "bpmnlint-plugin-camunda-compat",
"version": "2.31.0",
"description": "A bpmnlint plug-in for Camunda compatibility",
"main": "index.js",
"scripts": {
"all": "npm run lint && npm test",
"dev": "npm run test:watch",
"lint": "eslint .",
"test": "mocha 'test/**/*.spec.js'",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/camunda/bpmnlint-plugin-camunda-compat"
},
"keywords": [
"bpmnlint",
"plugin"
],
"author": {
"name": "Philipp Fromme",
"url": "https://github.com/philippfromme"
},
"license": "MIT",
"devDependencies": {
"bpmn-moddle": "^8.1.0",
"bpmnlint": "^10.2.0",
"camunda-bpmn-moddle": "^7.0.1",
"chai": "^4.4.1",
"eslint": "^8.56.0",
"eslint-plugin-bpmn-io": "^1.0.0",
"mocha": "^10.2.0",
"modeler-moddle": "^0.2.0",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"zeebe-bpmn-moddle": "^1.9.0"
},
"dependencies": {
"@bpmn-io/feel-lint": "^1.2.0",
"@bpmn-io/moddle-utils": "^0.2.1",
"bpmnlint-utils": "^1.0.2",
"min-dash": "^4.1.1",
"semver-compare": "^1.0.0"
},
"files": [
"rules",
"index.js"
],
"engines": {
"node": "*"
}
}