forked from bpmn-io/bpmn-js-differ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.14 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
{
"name": "bpmn-js-differ",
"version": "2.0.2",
"description": "A semantic diffing utility for BPMN 2.0 files",
"scripts": {
"all": "run-s lint test",
"lint": "eslint .",
"pretest": "rollup -c",
"test": "mocha -r esm test/spec/*.js",
"prepublishOnly": "rollup -c"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/bpmn-js-differ"
},
"keywords": [
"bpmnjs",
"diff"
],
"author": {
"name": "Nico Rehwaldt",
"url": "https://github.com/Nikku"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"license": "MIT",
"devDependencies": {
"bpmn-moddle": "^5.1.3",
"chai": "^4.1.2",
"eslint": "^4.12.0",
"eslint-plugin-bpmn-io": "^0.5.2",
"esm": "^3.0.24",
"mocha": "^4.0.1",
"npm-run-all": "^4.1.2",
"rollup": "^0.58.2",
"rollup-plugin-hypothetical": "^2.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^3.0.0"
},
"dependencies": {
"diffpatch": "^0.5.1",
"min-dash": "^3.0.0"
}
}