-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
82 lines (82 loc) · 2.02 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@mobily/ts-belt",
"description": "🔧 Fast, modern, and practical utility library for FP in TypeScript.",
"version": "3.5.0",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"*.md",
"package.json",
"index.js.flow"
],
"scripts": {
"build": "yarn foy -c ./scripts/build.foyfile.ts",
"clean": "rm -rf ./dist && rm -f ./tsconfig.tsbuildinfo",
"test": "yarn foy -c ./scripts/test.foyfile.ts",
"re:clean": "yarn rescript clean",
"re:build": "yarn rescript build",
"re:dev": "yarn rescript build -w",
"transform": "yarn foy -c ./scripts/transform.foyfile.ts",
"generate": "yarn foy -c ./scripts/generate.foyfile.ts"
},
"engines": {
"node": ">= 10.*"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"keywords": [
"typescript",
"flow",
"functional-programming",
"fp",
"monad",
"option",
"option-type",
"result",
"result-type",
"array",
"utility"
],
"author": "Marcin Dziewulski <hello@mobily.pl>",
"homepage": "https://github.com/mobily/ts-belt#readme",
"bugs": "https://github.com/mobily/ts-belt/issues",
"repository": {
"type": "git",
"url": "https://github.com/mobily/ts-belt.git"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/jscodeshift": "^0.11.3",
"all-contributors-cli": "^6.20.0",
"common-tags": "^1.8.2",
"coveralls": "^3.1.1",
"esbuild": "^0.14.5",
"flow-bin": "^0.168.0",
"flowgen": "^1.16.1",
"foy": "^0.2.16",
"gentype": "^4.3.0",
"globby": "^11.0.3",
"jest": "^27.4.5",
"jscodeshift": "^0.13.0",
"prettier": "^2.5.1",
"rescript": "^9.1.4",
"ts-expect": "^1.3.0",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"cacheDirectories": [
"node_modules"
]
}