-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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
{
"name": "bpmn-js-cli",
"version": "2.4.0",
"description": "A command-line interface for bpmn-js",
"scripts": {
"all": "run-s lint test",
"lint": "eslint .",
"start": "SINGLE_START=1 npm run dev",
"dev": "npm test -- --auto-watch --no-single-run",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/bpmn-js-cli"
},
"keywords": [
"bpmn-js",
"bpmn-js-plugin"
],
"author": "Nico Rehwaldt<[email protected]>",
"license": "MIT",
"devDependencies": {
"bpmn-js": "^18.0.0",
"chai": "^4.4.1",
"eslint": "^9.0.0",
"eslint-plugin-bpmn-io": "^2.0.1",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-debug-launcher": "^0.0.5",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-webpack": "^5.0.1",
"mocha": "^10.2.0",
"mocha-test-container-support": "^0.2.0",
"npm-run-all2": "^7.0.0",
"puppeteer": "^24.0.0",
"semver": "^7.5.4",
"webpack": "^5.90.1"
},
"dependencies": {
"min-dash": "^4.1.1"
},
"peerDependencies": {
"bpmn-js": "*"
},
"files": [
"lib",
"index.js"
]
}