forked from bpmn-io/moddle-xml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.03 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.03 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
{
"name": "moddle-xml",
"version": "7.2.3",
"description": "XML import/export for documents described with moddle",
"scripts": {
"all": "run-s lint test",
"lint": "eslint .",
"dev": "npm test -- --watch",
"test": "mocha -r esm --reporter=spec test/**/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/moddle-xml"
},
"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"
}
],
"license": "MIT",
"sideEffects": false,
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^3.19.0",
"eslint-plugin-bpmn-io": "^0.4.1",
"esm": "^3.0.15",
"mocha": "^4.0.1",
"npm-run-all": "^4.1.1"
},
"dependencies": {
"min-dash": "^3.0.0",
"moddle": "^4.1.0",
"saxen": "^8.1.0",
"tiny-stack": "^1.0.0"
}
}