-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.13 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
{
"name": "lambda-craft",
"version": "0.2.0",
"description": "Modern, and practical utility library for FP in TypeScript",
"type": "module",
"main": "src/index.mjs",
"typings": "src/index.d.ts",
"files": [
"src/**/*.mjs",
"src/**/*.d.ts"
],
"bugs": {
"url": "https://github.com/eljou/lambda-craft/issues"
},
"homepage": "https://github.com/eljou/lambda-craft#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/eljou/lambda-craft.git"
},
"scripts": {
"lint": "eslint src/**/*.mjs --quiet --fix",
"run:playground": "npx tsx src/playground",
"test": "node --test",
"test:report": "node --test --experimental-test-coverage",
"release": "np"
},
"keywords": [
"functional",
"fp",
"monad",
"typeclass",
"either",
"task",
"maybe",
"pure"
],
"author": "Ernesto Fuentes Gómez",
"license": "MIT",
"engines": {
"node": ">=14.17.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"lcov": "^1.16.0",
"np": "^9.2.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tsx": "^4.7.1",
"typescript": "^5.4.2"
}
}