forked from a-synchronous/rubico
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.05 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": "rubico",
"version": "1.5.19",
"description": "[a]synchronous functional programming",
"author": "Richard Tong",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "github:a-synchronous/rubico"
},
"homepage": "https://rubico.land",
"keywords": [
"function-composition",
"asynchronous",
"transducers",
"parallel",
"series",
"functional-programming",
"promise",
"async-await",
"node",
"javascript",
"tacit",
"pointfree",
"concurrent",
"iterator",
"async",
"generator",
"combinators",
"monad",
"utility",
"operator"
],
"devDependencies": {
"bluebird": "^3.7.2",
"codecov": "^3.7.1",
"eslint": "^7.3.1",
"fantasy-land": "^4.1.0",
"lodash": "^4.17.19",
"mocha": "^7.2.0",
"node-fetch": "^2.6.1",
"nyc": "^15.1.0",
"ramda": "^0.27.1"
},
"scripts": {
"benchmarks": "mocha benchmarks/",
"test": "mocha test.js x/*.test.js monad/*.test.js",
"lint": "eslint index.js x monad"
}
}