-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.41 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.41 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
{
"name": "@ronaldroe/micro-flow",
"version": "1.3.1",
"description": "A lightweight, flexible workflow orchestration library for Node.js and browser environments. Build complex, sequential processes with ease using an intuitive API that supports conditional logic, flow control, event handling, and state management.",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "node build.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"workflow",
"orchestration",
"state-machine",
"flow-control",
"event-driven",
"browser",
"nodejs",
"state-management",
"sequential",
"process-automation"
],
"author": "Starkey Software",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/starkeysoft/micro-flow.git"
},
"bugs": {
"url": "https://github.com/starkeysoft/micro-flow/issues"
},
"homepage": "https://github.com/starkeysoft/micro-flow#readme",
"files": [
"dist/",
"src/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"date-fns": "^4.1.0",
"node-schedule": "^2.1.1"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.14",
"esbuild": "^0.27.0",
"vitest": "^4.0.14"
}
}