-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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
{
"name": "exalted.future",
"version": "0.0.36",
"description": "Exalted monadic library & functional fun, fantasy-land compliant, mostly.",
"repository": "https://github.com/pre63/exalted.future.git",
"author": "pre63",
"license": "Apache-2.0",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"type": "module",
"private": false,
"sideEffects": false,
"scripts": {
"rollup": "./node_modules/.bin/rollup -c",
"build": "yarn rollup",
"prebuild": "rm -rf dist",
"pub": "yarn publish",
"prepub": "yarn test",
"test": "jest ./ci/*",
"pretest": "yarn build",
"specs": "node --experimental-vm-modules ./node_modules/.bin/jest ./specs/* --coverage"
},
"devDependencies": {
"@babel/preset-env": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"jest": "^26.6.1",
"rollup": "^2.32.1",
"rollup-plugin-sizes": "^1.0.3"
},
"files": [
"dist"
],
"keywords": [
"fp",
"exalted",
"fantasy-land",
"algebraic",
"control-flow",
"async",
"functor",
"monad",
"maybe",
"either",
"future",
"types",
"fun"
]
}