-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.08 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.08 KB
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
{
"name": "@odyssee/imqfe",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "tsc && tsc-alias",
"dev": "tsc && (concurrently \"tsc -w\" \"tsc-alias -w\" \"jest --watch\")"
},
"author": "https://github.com/MortallicaXxX",
"license": "ISC",
"description": "Flow Engine & In Memory Queue",
"files": ["dist"],
"publishConfig": {
"access": "public"
},
"keywords": [
"workflow",
"flow",
"engine",
"queue",
"in-memory",
"task",
"orchestration",
"pipeline",
"async",
"dependency",
"parallel",
"json",
"automation",
"job",
"worker",
"event",
"resolver",
"subflow",
"conditional",
"wait",
"echo",
"javascript",
"typescript",
"open-source"
],
"dependencies": {
"colors": "^1.4.0",
"node-fetch": "^3.3.2",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"queue": "^6.0.2",
"stjs": "^0.0.5",
"yaml": "^2.8.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@thesheps/jest-md-reporter": "^0.0.8",
"@types/jest": "^30.0.0",
"jest": "^30.0.2",
"ts-jest": "^29.4.0",
"tsc-alias": "^1.8.16"
}
}