-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
69 lines (69 loc) · 1.37 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
66
67
68
69
{
"name": "moddle-xml",
"version": "11.0.0",
"description": "XML import/export for documents described with moddle",
"scripts": {
"all": "run-s lint test",
"build": "rollup -c",
"dev": "npm test -- --watch",
"lint": "eslint .",
"test": "mocha --reporter=spec --recursive test",
"pretest": "run-s build",
"prepare": "run-s build"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/moddle-xml"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"keywords": [
"moddle",
"model",
"meta-model",
"xml",
"xsd",
"import",
"export"
],
"author": {
"name": "Nico Rehwaldt",
"url": "https://github.com/Nikku"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"engines": {
"node": ">= 18"
},
"files": [
"dist"
],
"license": "MIT",
"sideEffects": false,
"devDependencies": {
"chai": "^4.4.1",
"eslint": "^9.12.0",
"eslint-plugin-bpmn-io": "^2.0.2",
"mocha": "^10.3.0",
"moddle": "^7.0.0",
"npm-run-all": "^4.1.5",
"rollup": "^4.12.0"
},
"dependencies": {
"min-dash": "^4.0.0",
"saxen": "^10.0.0"
},
"peerDependencies": {
"moddle": ">= 6.2.0"
}
}