-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
65 lines (65 loc) · 1.7 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
{
"name": "bpmn-js-sketchy",
"version": "0.7.2",
"description": "bpmn-js-sketchy",
"main": "dist/index.js",
"source": "lib/index.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.umd.js",
"scripts": {
"all": "run-s lint test build",
"lint": "eslint .",
"dev": "npm test -- --auto-watch --no-single-run",
"build": "rollup -c --bundleConfigAsCjs",
"test": "karma start",
"prepublishOnly": "run-s build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bpmn-io/bpmn-js-sketchy.git"
},
"keywords": [],
"author": "bpmn.io",
"license": "MIT",
"bugs": {
"url": "https://github.com/bpmn-io/bpmn-js-sketchy/issues"
},
"homepage": "https://github.com/bpmn-io/bpmn-js-sketchy#readme",
"peerDependencies": {
"bpmn-js": ">= 11",
"diagram-js": ">= 11"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"bpmn-js": "^17.0.2",
"chai": "^4.4.1",
"diagram-js": "^14.0.0",
"eslint": "^8.56.0",
"eslint-plugin-bpmn-io": "^1.0.0",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-webpack": "^5.0.1",
"mocha": "^10.3.0",
"mocha-test-container-support": "^0.2.0",
"npm-run-all2": "^6.1.2",
"puppeteer": "^22.1.0",
"rollup": "^4.12.0",
"rollup-plugin-string": "^3.0.0",
"webpack": "^5.90.3"
},
"dependencies": {
"inherits-browser": "^0.1.0",
"min-dash": "^4.0.0",
"min-dom": "^4.0.3",
"roughjs": "^4.6.6",
"tiny-svg": "^3.0.0"
},
"files": [
"dist"
]
}