-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.31 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
63
64
65
66
67
{
"name": "rocket-pipes",
"version": "0.11.0",
"description": "Powerful pipes for TypeScript, that chain Promise and ADT for you",
"repository": {
"type": "git",
"url": "[email protected]:darky/rocket-pipes.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"test": "jest",
"prepublishOnly": "npm run build"
},
"files": [
"index.ts",
"dist/index.js",
"dist/index.js.map",
"dist/index.d.ts"
],
"keywords": [
"ramda",
"pipe",
"pipeline",
"context",
"mock",
"exit",
"Kleisli",
"compose",
"composition",
"maybe",
"promise",
"either",
"result",
"validation",
"adt",
"monet",
"ts",
"typescript",
"chain-promise",
"catamorphism",
"fp-libraries",
"pipes",
"purify"
],
"author": "Vladislav Botvin",
"license": "MIT",
"dependencies": {
"@ramda/pipewith": "^0.26.1",
"fp-ts": "^2.13.1",
"monet": "^0.9.3",
"p-is-promise": "^3.0.0",
"purify-ts": "^0.16.3",
"ts-toolbelt": "9.1.7"
},
"devDependencies": {
"@types/jest": "29.2.2",
"@types/ramda": "0.28.20",
"jest": "29.3.1",
"ramda": "0.28.0",
"rimraf": "3.0.2",
"ts-jest": "29.0.3",
"typescript": "4.7.4"
}
}