-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.46 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": "stated-workflow",
"version": "0.0.1",
"license": "Apache-2.0",
"description": "Lightweight and scalable event-driven workflow engine built on Stated",
"main": "./src/workflow/StatedWorkflow.js",
"module": "./src/workflow/StatedWorkflow.js",
"bin": {
"stateflow": "./stated-workflow.js"
},
"exports": {
".": "./src/workflow/StatedWorkflow.js"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cisco-open/stated-workflow"
},
"keywords": [
"jsonata",
"json",
"config",
"state",
"dag",
"workflow"
],
"author": "Geoff Hendrey <[email protected]>, Sergey Sergeev <[email protected]>",
"dependencies": {
"@kafkajs/confluent-schema-registry": "^3.3.0",
"@opentelemetry/api": "^1.8.0",
"@opentelemetry/sdk-metrics-base": "^0.31.0",
"avsc": "^5.7.7",
"body-parser": "^1.20.2",
"express": "^4.19.2",
"fs-extra": "^11.2.0",
"kafkajs": "^2.2.4",
"kafkajs-lz4": "^1.2.1",
"pulsar-client": "^1.9.0",
"stated-js": "^0.1.23"
},
"devDependencies": {
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"wtfnode": "^0.9.1"
},
"files": [
"CONTRIBUTING.md",
"LICENSE",
"package.json",
"README.md",
"README.test.js",
"yarn.lock",
"src/",
"dist/",
"example/**/*",
"!**/.idea",
"!**/.github"
],
"type": "module"
}