-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 929 Bytes
/
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
{
"name": "fpipes",
"version": "2.0.2",
"description": "FPipes is a utility library that provides a way to chain synchronous and asynchronous functions in a readable manner. It simplifies the flow of data through a series of functions, making your code more readable and maintainable.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -b",
"dev": "tsc -b -w",
"test": "jest"
},
"keywords": [
"functional",
"pipe",
"pipeline",
"composition",
"flow",
"chain",
"async",
"promises",
"typescript",
"utility"
],
"author": "Skya Tura <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/skyatura/fpipes.git"
},
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}