-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "bpmn-js-nyan",
"version": "2.2.0",
"description": "Lets processes fly!",
"scripts": {
"all": "run-s lint test",
"dev": "run-s test:watch",
"lint": "eslint .",
"test": "karma start",
"test:watch": "npm test -- --auto-watch --no-single-run"
},
"author": "Nico Rehwaldt <https://github.com/nikku>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/bpmn-js-nyan"
},
"devDependencies": {
"bpmn-js": "^18.0.0",
"chai": "^4.4.0",
"diagram-js": "^15.0.0",
"eslint": "^9.0.0",
"eslint-plugin-bpmn-io": "^2.0.2",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^5.0.0",
"mocha": "^10.2.0",
"npm-run-all2": "^7.0.0",
"puppeteer": "^24.0.0",
"sinon": "^17.0.1",
"sinon-chai": "^3.1.0",
"webpack": "^5.89.0"
},
"dependencies": {
"inherits-browser": "^0.1.0"
},
"peerDependencies": {
"bpmn-js": "*",
"diagram-js": "*"
},
"files": [
"lib"
]
}