-
Notifications
You must be signed in to change notification settings - Fork 167
/
package.json
80 lines (80 loc) · 2 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "bpmn-engine",
"description": "BPMN 2.0 execution engine. Open source javascript workflow engine.",
"version": "23.0.2",
"type": "module",
"module": "./src/index.js",
"main": "./lib/index.cjs",
"types": "./types/bpmn-engine.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git://github.com/paed01/bpmn-engine.git"
},
"author": {
"name": "Pål Edman",
"url": "https://github.com/paed01"
},
"engines": {
"node": ">=18"
},
"files": [
"lib/",
"src/",
"types/"
],
"scripts": {
"test": "mocha -p -R @bonniernews/hot-bev",
"posttest": "npm run lint && npm run toc && npm run dist",
"lint": "eslint . --cache && prettier . -c --cache",
"wintest": "mocha",
"cov:html": "c8 -r html -r text mocha -p -R @bonniernews/hot-bev",
"test:lcov": "c8 -r lcov mocha && npm run lint",
"toc": "node scripts/generate-api-toc ./docs/API.md,./docs/Examples.md",
"test-md": "texample ./docs/API.md,./docs/Examples.md,./docs/Upgrade.md",
"dist": "rollup -c",
"prepack": "npm run dist"
},
"keywords": [
"workflow",
"engine",
"process",
"automation",
"bpmn",
"bpmn 2"
],
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/paed01/bpmn-engine/master/LICENSE"
}
],
"devDependencies": {
"@bonniernews/hot-bev": "^0.4.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@types/bpmn-moddle": "^5.1.6",
"@types/node": "^18.19.31",
"bent": "^7.3.12",
"c8": "^10.0.0",
"camunda-bpmn-moddle": "^7.0.1",
"chai": "^5.1.0",
"chronokinesis": "^6.0.0",
"eslint": "^9.10.0",
"markdown-toc": "^1.2.0",
"mocha": "^10.2.0",
"mocha-cakes-2": "^3.3.0",
"prettier": "^3.2.5",
"rollup": "^4.10.0",
"texample": "^0.0.6"
},
"dependencies": {
"bpmn-elements": "^16.2.1",
"bpmn-moddle": "^9.0.1",
"debug": "^4.3.7",
"moddle-context-serializer": "^4.2.1"
},
"peerDependencies": {
"smqp": ">=9"
}
}