forked from getify/monio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.06 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "monio",
"description": "The most powerful IO monad implementation in JS",
"version": "0.51.3",
"main": "./src/index.js",
"scripts": {
"build": "npm run build-all",
"prepare": "npm run build",
"test": "node --trace-warnings scripts/node-tests.js",
"test:package": "TEST_PACKAGE=true npm test",
"test:umd": "TEST_UMD=true npm test",
"test:esm": "TEST_ESM=true npm test",
"test:all": "npm test && npm run test:package && npm run test:umd && npm run test:esm && scripts/test-all-complete",
"coverage": "nyc -t './coverage/.nyc_output' --reporter=lcov --reporter=html --reporter=text --exclude=**/tests --exclude=**/node-tests.js --exclude=**/load-tests.js node scripts/node-tests.js",
"coverage:report": "npm run coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"build-all": "node scripts/build-all.js"
},
"devDependencies": {
"coveralls": "~3.1.1",
"moduloze": "~0.9.1",
"nyc": "~15.1.0",
"qunit": "~2.19.1",
"rxjs": "~7.5.2",
"sinon": "~12.0.1"
},
"mz-dependencies": {
"index.js": "Monio",
"just.js": "Just",
"nothing.js": "Nothing",
"maybe.js": "Maybe",
"either.js": "Either",
"async-either.js": "AsyncEither",
"io/io.js": "IO",
"io/iox.js": "IOx",
"io/any.js": "AnyIO",
"io/all.js": "AllIO",
"io/helpers.js": "IOHelpers",
"io/x-helpers.js": "IOxHelpers",
"lib/util.js": "MonioUtil"
},
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"default": "./src/index.js"
},
"./just": {
"import": "./dist/esm/just.mjs",
"default": "./src/just.js"
},
"./nothing": {
"import": "./dist/esm/nothing.mjs",
"default": "./src/nothing.js"
},
"./maybe": {
"import": "./dist/esm/maybe.mjs",
"default": "./src/maybe.js"
},
"./either": {
"import": "./dist/esm/either.mjs",
"default": "./src/either.js"
},
"./async-either": {
"import": "./dist/esm/async-either.mjs",
"default": "./src/async-either.js"
},
"./io": {
"import": "./dist/esm/io/io.mjs",
"default": "./src/io/io.js"
},
"./iox": {
"import": "./dist/esm/io/iox.mjs",
"default": "./src/io/iox.js"
},
"./io/x": {
"import": "./dist/esm/io/iox.mjs",
"default": "./src/io/iox.js"
},
"./io/any": {
"import": "./dist/esm/io/any.mjs",
"default": "./src/io/any.js"
},
"./io/all": {
"import": "./dist/esm/io/all.mjs",
"default": "./src/io/all.js"
},
"./io/helpers": {
"import": "./dist/esm/io/helpers.mjs",
"default": "./src/io/helpers.js"
},
"./iox/helpers": {
"import": "./dist/esm/io/x-helpers.mjs",
"default": "./src/io/x-helpers.js"
},
"./io/x/helpers": {
"import": "./dist/esm/io/x-helpers.mjs",
"default": "./src/io/x-helpers.js"
},
"./util": {
"import": "./dist/esm/lib/util.mjs",
"default": "./src/lib/util.js"
}
},
"repository": "getify/monio",
"keywords": [
"fp",
"monad",
"async",
"io",
"promise"
],
"bugs": {
"url": "https://github.com/getify/monio/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/getify/monio",
"author": "Kyle Simpson <[email protected]>",
"license": "MIT"
}