forked from bpmn-io/bpmn-js-bpmnlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.13 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
{
"name": "bpmn-js-bpmnlint",
"version": "0.21.0",
"description": "bpmn-js integration for bpmnlint",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"source": "lib/index.js",
"umd:main": "dist/bpmn-js-bpmnlint.umd.js",
"scripts": {
"all": "run-s lint test distro",
"lint": "eslint .",
"start": "cross-env SINGLE_START=true npm run dev",
"test": "karma start --no-auto-test --single-run",
"dev": "karma start",
"distro": "run-s build test:build copy-assets",
"build": "NODE_ENV=production rollup -c --bundleConfigAsCjs",
"build:watch": "npm run build -- -w",
"test:build": "karma start test/distro/karma.conf.js",
"copy-assets": "cpx assets/css/* dist/assets/css/ -v",
"prepublishOnly": "run-s distro"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bpmn-io/bpmn-js-bpmnlint.git"
},
"author": "Philipp Fromme <https://github.com/philippfromme>",
"contributors": [
{
"name": "Nico Rehwaldt",
"url": "https://github.com/nikku"
}
],
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"bpmn-js": "^13.2.0",
"bpmnlint": "^9.0.0",
"bpmnlint-loader": "^0.1.6",
"chai": "^4.3.7",
"cpx": "^1.5.0",
"cross-env": "^7.0.3",
"diagram-js": "^12.2.0",
"eslint": "^8.34.0",
"eslint-plugin-bpmn-io": "^1.0.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"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.0",
"mocha": "^10.0.0",
"mocha-test-container-support": "^0.2.0",
"npm-run-all": "^4.1.5",
"puppeteer": "^20.0.0",
"rollup": "^3.26.2",
"rollup-plugin-string": "^3.0.0",
"sinon": "^15.0.0",
"sinon-chai": "^3.7.0",
"webpack": "^5.75.0"
},
"dependencies": {
"min-dash": "^4.1.1",
"min-dom": "^4.1.0"
},
"peerDependencies": {
"bpmn-js": "*",
"bpmnlint": ">= 3.2",
"diagram-js": "*"
},
"files": [
"dist"
]
}