-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.29 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
{
"name": "eek-whales",
"version": "0.3.0",
"description": "a collection of JS/TS modules for functional programming",
"type": "module",
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/index.js.map"
],
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format esm --dts --sourcemap --no-splitting --clean",
"dev": "tsup src/index.ts --format esm --dts --sourcemap --no-splitting --clean --watch",
"lint": "tsc",
"test": "tsup src/index.spec.ts --format esm --no-splitting --clean --silent --onSuccess 'node dist/index.spec.js'",
"clean": "rm -rf dist node_modules"
},
"keywords": [
"functional",
"utilities",
"utils",
"fp",
"point-free",
"curried",
"fantasy-land",
"predicate",
"ADT",
"algebraic",
"combinator",
"category",
"lambda",
"calculus",
"monoid",
"setoid"
],
"author": "Randy Schneck <i@rasch.co>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/rasch/eek-whales.git"
},
"devDependencies": {
"@types/node": "^18.14.0",
"@types/prettier": "2.7.2",
"fvb": "^0.1.0",
"prettier": "2.8.4",
"tsup": "^6.6.3",
"typescript": "^4.9.5"
}
}