-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.21 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
{
"name": "monastic",
"version": "3.0.3",
"description": "A functional approach to stateful computations",
"tags": [
"fantasy-land",
"functional",
"monad",
"monadic",
"state monad",
"state"
],
"type": "module",
"main": "index.cjs",
"module": "index.js",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"codecov": "codecov",
"doctest": "sanctuary-doctest",
"lint": "sanctuary-lint",
"release": "sanctuary-release",
"test": "npm run lint && sanctuary-test && npm run doctest"
},
"repository": {
"type": "git",
"url": "git://github.com/dicearr/monastic.git"
},
"files": [
"/index.cjs",
"/index.js",
"/LICENSE",
"/package.json",
"/README.md"
],
"author": "Diego Ceresuela <[email protected]> (https://github.com/dicearr)",
"license": "MIT",
"dependencies": {
"sanctuary-type-classes": "^13.0.0"
},
"devDependencies": {
"c8": "^8.0.1",
"codecov": "^3.7.0",
"fantasy-laws": "^2.0.1",
"jsverify": "^0.8.4",
"oletus": "^4.0.0",
"rollup": "^3.9.1",
"sanctuary-maybe": "^2.1.0",
"sanctuary-scripts": "^5.0.0"
}
}