-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
70 lines (70 loc) · 1.63 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
{
"name": "bpmnlint",
"description": "Validate your BPMN diagrams based on configurable lint rules",
"version": "10.3.1",
"main": "lib/index.js",
"keywords": [
"bpmnlint",
"bpmn",
"linter",
"cli",
"validation",
"rules"
],
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/bpmnlint"
},
"author": "Seif Eddine Ghezala <siffogh3@gmail.com>",
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"engines": {
"node": ">= 20"
},
"license": "MIT",
"scripts": {
"all": "run-s lint test-coverage",
"lint": "eslint .",
"dev": "npm test -- --watch",
"test": "mocha --exclude 'test/integration/*/**' 'test/**/*.*js'",
"test-coverage": "nyc --reporter=lcov --reporter=html npm test",
"generate-docs-images": "npx @bpmn-io/bpmnlint-generate-docs-images ."
},
"bin": {
"bpmnlint": "./bin/bpmnlint.js"
},
"dependencies": {
"@bpmn-io/moddle-utils": "^0.2.1",
"ansi-colors": "^4.1.3",
"bpmn-moddle": "^8.1.0",
"bpmnlint-utils": "^1.1.1",
"cli-table": "^0.3.11",
"color-support": "^1.1.3",
"min-dash": "^4.2.1",
"mri": "^1.2.0",
"pluralize": "^7.0.0",
"tiny-glob": "^0.2.9"
},
"devDependencies": {
"@bpmn-io/bpmnlint-generate-docs-images": "^0.4.0",
"chai": "^4.5.0",
"eslint": "^9.13.0",
"eslint-plugin-bpmn-io": "^2.0.2",
"execa": "^8.0.1",
"install-local": "^3.0.1",
"mocha": "^10.8.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"strip-indent": "^3.0.0"
},
"files": [
"bin",
"config",
"lib",
"rules"
]
}