-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
56 lines (56 loc) · 1.18 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
{
"name": "bpmn-js-differ",
"version": "3.0.2",
"description": "A semantic diffing utility for BPMN 2.0 files",
"scripts": {
"all": "run-s lint test",
"lint": "eslint .",
"pretest": "rollup -c --bundleConfigAsCjs",
"test": "mocha test/spec/*.js"
},
"main": "./dist/index.cjs",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.esm.js",
"node": "./dist/index.cjs"
}
},
"type": "module",
"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": {
"@rollup/plugin-node-resolve": "^15.2.3",
"bpmn-moddle": "^9.0.1",
"chai": "^4.1.2",
"eslint": "^8.57.0",
"eslint-plugin-bpmn-io": "^1.0.1",
"mocha": "^8.4.0",
"npm-run-all": "^4.1.2",
"rollup": "^4.19.0"
},
"dependencies": {
"diffpatch": "^0.6.0",
"min-dash": "^4.2.1"
},
"files": [
"dist"
]
}