-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.24 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@camunda/linting",
"version": "3.29.1",
"description": "Linting for Camunda",
"main": "index.js",
"scripts": {
"all": "npm run lint && npm test",
"dev": "npm run test:watch",
"lint": "eslint .",
"start": "npm run start:cloud",
"start:platform": "cross-env SINGLE_START=platform npm run test:watch",
"start:cloud": "cross-env SINGLE_START=cloud npm run test:watch",
"test": "npm run compile-config && karma start",
"test:watch": "npm test -- --auto-watch --no-single-run",
"compile-config": "node tasks/compile-config.js",
"prepublish": "npm run compile-config"
},
"keywords": [
"bpmnlint",
"camunda"
],
"author": {
"name": "Philipp Fromme",
"url": "https://github.com/philippfromme"
},
"repository": {
"type": "git",
"url": "https://github.com/camunda/linting"
},
"license": "MIT",
"dependencies": {
"@bpmn-io/diagram-js-ui": "^0.2.3",
"bpmn-moddle": "^9.0.1",
"bpmnlint": "^10.3.1",
"bpmnlint-plugin-camunda-compat": "^2.28.1",
"bpmnlint-utils": "^1.0.2",
"camunda-bpmn-moddle": "^7.0.1",
"clsx": "^2.0.0",
"min-dash": "^4.0.0",
"min-dom": "^5.1.1",
"modeler-moddle": "^0.2.0",
"semver-compare": "^1.0.0",
"zeebe-bpmn-moddle": "^1.7.0"
},
"devDependencies": {
"bpmn-js": "^17.11.1",
"bpmn-js-element-templates": "^2.2.1",
"bpmn-js-properties-panel": "^5.27.0",
"camunda-bpmn-js-behaviors": "^1.7.1",
"chai": "^4.5.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-plugin-bpmn-io": "^1.0.1",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-debug-launcher": "0.0.5",
"karma-env-preprocessor": "^0.1.1",
"karma-mocha": "^2.0.1",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^5.0.1",
"mocha": "^10.7.3",
"mocha-test-container-support": "^0.2.0",
"puppeteer": "^23.3.1",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"webpack": "^5.94.0"
},
"peerDependencies": {
"bpmn-js-properties-panel": ">= 2.0.0"
},
"peerDependenciesMeta": {
"bpmn-js-properties-panel": {
"optional": true
}
},
"files": [
"assets",
"lib",
"index.js",
"modeler.js"
],
"publishConfig": {
"access": "public"
}
}