-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.35 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.35 KB
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
{
"name": "@bpmn-io/diagram-js-ui",
"version": "0.2.3",
"type": "module",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"lib"
],
"sideEffects": false,
"scripts": {
"all": "run-s lint test check-types",
"check-types": "tsc --noEmit --noImplicitAny",
"lint": "eslint .",
"test": "karma start karma.conf.cjs",
"dev": "npm test -- --auto-watch --no-single-run"
},
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/diagram-js-ui"
},
"author": {
"name": "Beatriz Mendes",
"url": "https://github.com/smbea"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/karma-mocha": "^1.3.4",
"@types/mocha": "^10.0.10",
"chai": "^6.2.1",
"eslint": "^9.39.2",
"eslint-plugin-bpmn-io": "^2.2.0",
"karma": "^6.4.4",
"karma-chrome-launcher-2": "^3.3.0",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"karma-webpack": "^5.0.1",
"mocha": "^11.0.0",
"npm-run-all2": "^8.0.0",
"puppeteer": "^24.34.0",
"typescript": "^5.9.3",
"webpack": "^5.104.1"
},
"dependencies": {
"htm": "^3.1.1",
"preact": "^10.11.2"
}
}