forked from fluture-js/Fluture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.5 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
{
"name": "fluture",
"version": "7.2.1",
"description": "FantasyLand compliant (monadic) alternative to Promises",
"main": "index.js",
"types": "index.d.ts",
"module": "index.mjs.js",
"@std/esm": {
"esm": "all",
"cjs": true
},
"files": [
"src",
"index.es.js",
"index.d.ts"
],
"repository": "https://github.com/fluture-js/Fluture.git",
"scripts": {
"build": "rollup -c",
"clean": "rimraf npm-debug.log coverage index.js index.test.js",
"lint": "eslint src test index.es.js README.md",
"lint:readme": "remark --no-stdout --frail -u remark-validate-links README.md",
"release": "npm outdated --long; xyz --edit --repo git@github.com:fluture-js/Fluture.git --tag 'X.Y.Z' --script scripts/distribute --increment",
"test": "npm run lint && npm run lint:readme && npm run test:unit",
"test:unit": "npm run build && nyc --include src mocha --require @std/esm --ui bdd --reporter list --check-leaks --full-trace test/**.test.js",
"test:coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"author": "Aldwin Vlasblom <aldwin.vlasblom@gmail.com> (https://github.com/Avaq)",
"homepage": "https://github.com/fluture-js/Fluture",
"bugs": {
"url": "https://github.com/fluture-js/Fluture/issues"
},
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"algebraic",
"async",
"asynchronous",
"browser",
"control-flow",
"fantasy-land",
"fp",
"functional",
"functor",
"future",
"library",
"monad",
"monadic",
"node",
"parallel",
"promise",
"sequential"
],
"dependencies": {
"concurrify": "^1.0.0",
"denque": "^1.1.1",
"inspect-f": "^1.2.0",
"sanctuary-type-classes": "^6.0.0",
"sanctuary-type-identifiers": "^2.0.0"
},
"devDependencies": {
"@std/esm": "0.12.4",
"benchmark": "^2.1.0",
"chai": "^4.1.2",
"codecov": "^3.0.0",
"data.task": "^3.0.0",
"eslint": "^4.7.2",
"eslint-config-warp": "^2.0.0",
"eslint-plugin-markdown": "^1.0.0-beta.7",
"fantasy-land": "^3.0.0",
"fantasy-states": "^0.2.1",
"fun-task": "^1.5.1",
"jsverify": "^0.8.3",
"lodash.curry": "^4.1.1",
"mocha": "^4.0.0",
"nyc": "^11.2.1",
"ramda": "^0.25.0",
"ramda-fantasy": "^0.8.0",
"remark-cli": "^4.0.0",
"remark-validate-links": "^7.0.0",
"rimraf": "^2.6.2",
"rollup": "^0.50.0",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"xyz": "^2.0.1"
}
}