forked from paed01/bpmn-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.63 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
{
"name": "bpmn-engine",
"description": "BPMN 2.0 execution engine. Open source javascript workflow engine.",
"version": "17.1.1",
"main": "index.js",
"types": "types/bpmn-engine.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/paed01/bpmn-engine"
},
"author": {
"name": "Pål Edman",
"url": "https://github.com/paed01"
},
"engines": {
"node": ">=14"
},
"files": [
"lib/",
"types/",
"index.js"
],
"scripts": {
"test": "mocha -R dot",
"posttest": "npm run lint && npm run toc",
"lint": "eslint . --cache",
"wintest": "mocha",
"cov:html": "c8 -r html -r text mocha -R dot",
"test:lcov": "c8 -r lcov mocha && npm run lint",
"toc": "node scripts/generate-api-toc ./docs/API.md,./docs/Examples.md",
"test-md": "node scripts/test-markdown.js ./docs/API.md && node scripts/test-markdown.js ./docs/Examples.md"
},
"keywords": [
"workflow",
"engine",
"process",
"automation",
"bpmn",
"bpmn 2"
],
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/paed01/bpmn-engine/master/LICENSE"
}
],
"devDependencies": {
"bent": "^7.3.12",
"c8": "^8.0.0",
"camunda-bpmn-moddle": "^7.0.1",
"chai": "^4.3.7",
"chronokinesis": "^5.0.2",
"eslint": "^8.45.0",
"markdown-toc": "^1.2.0",
"mocha": "^10.2.0",
"mocha-cakes-2": "^3.3.0",
"nock": "^13.3.2"
},
"dependencies": {
"@types/bpmn-moddle": "^5.1.6",
"bpmn-elements": "^11.1.1",
"bpmn-moddle": "^8.0.1",
"debug": "^4.3.4",
"moddle-context-serializer": "^4.0.0",
"smqp": "^8.0.0"
}
}