forked from bpmn-io/moddle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.42 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
{
"name": "moddle",
"version": "5.0.2",
"description": "A library for importing meta-model based file formats into JS",
"scripts": {
"all": "run-s lint test distro",
"lint": "eslint .",
"dev": "npm test -- --watch",
"test": "mocha -r esm --reporter=spec --recursive test/spec",
"distro": "run-s build test:build",
"build": "rollup -c",
"prepare": "npm run build",
"test:build": "mocha --reporter=spec --recursive test/distro",
"prepublishOnly": "run-s distro"
},
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/moddle"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"umd:main": "dist/moddle.umd.js",
"source": "lib/index.js",
"keywords": [
"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": "^4.11.0",
"eslint-plugin-bpmn-io": "^0.4.1",
"esm": "^3.2.25",
"mocha": "^4.0.1",
"npm-run-all": "^4.1.2",
"rollup": "^1.17.0",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1"
},
"dependencies": {
"min-dash": "^3.0.0"
}
}