-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.37 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
{
"name": "dmnlint",
"description": "Validate your DMN diagrams based on configurable lint rules",
"version": "0.2.0",
"main": "lib/index.js",
"keywords": [
"dmnlint",
"dmn",
"linter",
"cli",
"validation",
"rules"
],
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/dmnlint"
},
"author": {
"name": "Maciej Barelkowski",
"url": "https://github.com/barmac"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"engines": {
"node": ">= 8"
},
"license": "MIT",
"scripts": {
"all": "run-s lint test-coverage",
"lint": "eslint .",
"dev": "npm test -- --watch",
"test": "mocha -r esm --exclude 'test/integration/cli/**' 'test/**/*.js'",
"test-coverage": "nyc --reporter=lcov --reporter=html npm test"
},
"bin": {
"dmnlint": "./bin/dmnlint.js"
},
"dependencies": {
"chalk": "^2.4.2",
"cli-table": "^0.3.1",
"dmn-moddle": "^9.0.0",
"dmnlint-utils": "^0.1.0",
"meow": "^5.0.0",
"pluralize": "^7.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-plugin-bpmn-io": "^0.8.2",
"esm": "^3.2.25",
"execa": "^2.0.3",
"install-local": "^1.0.0",
"mocha": "^6.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"strip-indent": "^2.0.0"
}
}