-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1003 Bytes
/
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
{
"name": "bpmnlint-loader",
"version": "0.1.6",
"description": "Consume bpmnlint config files with webpack",
"main": "index.js",
"scripts": {
"all": "run-s lint test",
"lint": "eslint .",
"test": "mocha 'test/*.js'"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/nikku/bpmnlint-loader.git"
},
"keywords": [
"bpmnlint",
"browser-pack",
"webpack-loader"
],
"author": {
"name": "Nico Rehwaldt",
"url": "https://github.com/nikku"
},
"license": "MIT",
"devDependencies": {
"bpmnlint": "^9.2.0",
"bpmnlint-plugin-external": "file:./test/bpmnlint-plugin-external",
"bpmnlint-plugin-simple": "file:./test/bpmnlint-plugin-simple",
"chai": "^4.3.6",
"eslint": "^8.24.0",
"eslint-plugin-bpmn-io": "^0.16.0",
"memory-fs": "^0.5.0",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.3",
"webpack": "^5.65.0"
},
"peerDependencies": {
"bpmnlint": "*"
},
"files": [
"index.js"
]
}