-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.82 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
{
"name": "@bpmn-io/extract-process-variables",
"version": "1.0.1",
"description": "A util for bpmn-js to extract Camunda BPM process variables from a BPMN 2.0 diagram.",
"main": "dist/index.cjs",
"module": "dist/index.js",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./zeebe": {
"import": "./zeebe/index.js",
"require": "./zeebe/index.cjs"
}
},
"source": "src/index.js",
"scripts": {
"build": "rollup -c",
"distro": "run-s build test:build",
"lint": "eslint .",
"prepare": "run-s distro",
"dev": "mocha -r esm --reporter=spec --recursive --watch test/**/*Spec.js",
"test": "nyc --reporter=lcov mocha --reporter=spec --recursive test/**/*Spec.js",
"test:build": "mocha --reporter=spec --recursive test/distro",
"all": "run-s lint test distro"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bpmn-io/extract-process-variables.git"
},
"author": "Niklas Kiefer <[email protected]> (https://github.com/pinussilvestrus)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bpmn-io/extract-process-variables/issues"
},
"homepage": "https://github.com/bpmn-io/extract-process-variables#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"bpmn-moddle": "^9.0.1",
"camunda-bpmn-moddle": "^7.0.1",
"chai": "^4.5.0",
"eslint": "^9.17.0",
"eslint-plugin-bpmn-io": "^2.0.2",
"mocha": "^11.0.1",
"npm-run-all": "^4.1.5",
"nyc": "^17.1.0",
"rollup": "^4.29.1",
"zeebe-bpmn-moddle": "^1.7.0"
},
"dependencies": {
"min-dash": "^4.0.0"
},
"files": [
"dist",
"zeebe"
]
}