-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.98 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.98 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "flow-wing",
"version": "2.0.0",
"description": "A simple library to easily build complex flows through composed/piped tasks flows",
"keywords": [
"async",
"compose",
"concurrent",
"context",
"control",
"flow",
"parallel",
"pipe",
"runner",
"series",
"shared",
"task",
"waterfall"
],
"homepage": "https://github.com/milsosa/flow-wing#readme",
"bugs": {
"url": "https://github.com/milsosa/flow-wing/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/milsosa/flow-wing.git"
},
"license": "MIT",
"author": "Milton Sosa <sosamilton19@gmail.com>",
"type": "module",
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"lint": "eslint . --ext .ts",
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build",
"test": "vitest",
"test:watch": "vitest --watch"
},
"dependencies": {
"debug": "^4.1.1",
"is-promise": "^2.1.0",
"lodash.defaults": "^4.2.0",
"lodash.isfunction": "^3.0.9",
"lodash.isplainobject": "^4.0.6",
"lodash.map": "^4.6.0",
"lodash.partial": "^4.2.1",
"verror": "^1.10.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/is-promise": "^2.1.0",
"@types/lodash.defaults": "^4.2.9",
"@types/lodash.isfunction": "^3.0.9",
"@types/lodash.isplainobject": "^4.0.9",
"@types/lodash.map": "^4.6.13",
"@types/lodash.partial": "^4.2.9",
"@types/node": "^24.3.1",
"@types/sinon": "^17.0.4",
"@types/verror": "^1.10.11",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"axios": "^1.11.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"sinon": "^7.5.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.42.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=4"
}
}