-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.55 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.55 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "bpmn-moddle",
"version": "10.0.0",
"description": "A moddle wrapper for BPMN 2.0",
"scripts": {
"all": "run-s generate-schema lint test",
"lint": "eslint .",
"dev": "npm test -- --watch",
"pretest": "run-s build",
"test": "mocha --reporter=spec --recursive test",
"build": "rollup -c",
"prepare": "run-s build",
"generate-schema": "node tasks/generate-schema.cjs"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/bpmn-moddle"
},
"exports": {
".": "./dist/index.js",
"./resources/*": "./resources/*",
"./package.json": "./package.json"
},
"engines": {
"node": ">= 20.12"
},
"keywords": [
"bpmn",
"moddle",
"bpmn20",
"meta-model"
],
"author": {
"name": "Nico Rehwaldt",
"url": "https://github.com/nikku"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"license": "MIT",
"sideEffects": false,
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"bpmn-in-color-moddle": "^0.2.0",
"chai": "^6.0.0",
"cmof-parser": "^0.5.2",
"eslint": "^9.39.2",
"eslint-plugin-bpmn-io": "^2.2.0",
"mocha": "^11.0.0",
"npm-run-all2": "^8.0.4",
"rollup": "^4.54.0",
"xsd-schema-validator": "^0.11.0"
},
"dependencies": {
"min-dash": "^5.0.0",
"moddle": "^8.0.0",
"moddle-xml": "^12.0.0"
},
"files": [
"dist",
"resources",
"!resources/bpmn/cmof"
]
}