-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
103 lines (103 loc) · 3.04 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
{
"name": "fluture",
"version": "14.0.0",
"description": "FantasyLand compliant (monadic) alternative to Promises",
"main": "index.cjs",
"type": "module",
"types": "index.d.ts",
"module": "index.js",
"exports": {
".": {
"require": "./index.cjs",
"import": "./index.js",
"default": "./index.cjs"
},
"./index.js": "./index.js",
"./test/arbitraries.js": "./test/arbitraries.js",
"./test/assertions.js": "./test/assertions.js"
},
"files": [
"src",
"index.cjs",
"index.js",
"index.d.ts",
"test/arbitraries.js",
"test/assertions.js"
],
"repository": "https://github.com/fluture-js/Fluture.git",
"scripts": {
"bench": "node ./scripts/bench.js",
"build": "rollup -c rollup.config.js",
"build:dist": "rollup -c rollup.config.dist.js",
"clean": "rimraf npm-debug.log coverage index.cjs .esm-cache .nyc_output node_modules/.cache",
"lint": "eslint src test index.js index.cjs.js",
"lint:readme": "remark --no-stdout --frail -u remark-validate-links README.md",
"release": "xyz --edit --repo [email protected]:fluture-js/Fluture.git --tag 'X.Y.Z' --script scripts/distribute --increment",
"test": "npm run lint && npm run lint:readme && ./scripts/test-esm && npm run test:code && npm run test:types && npm run test:build",
"test:code": "c8 oletus test/unit/*.js test/integration/*.js test/prop/*.js",
"test:mem": "NODE_OPTIONS='--experimental-modules --no-warnings' ./scripts/test-mem",
"test:build": "npm run build && oletus test/build/*.js",
"coverage:upload": "c8 report --reporter=text-lcov > coverage.lcov && codecov",
"coverage:report": "c8 report --reporter=html",
"test:types": "tsd"
},
"author": "Aldwin Vlasblom <[email protected]> (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": {
"sanctuary-show": "^2.0.0",
"sanctuary-type-identifiers": "^4.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"c8": "^9.0.0",
"chai": "^4.1.2",
"codecov": "^3.6.1",
"es-check": "^7.0.0",
"eslint": "^8.54.0",
"eslint-config-warp": "^7.1.0",
"fantasy-laws": "^2.0.1",
"jsverify": "^0.8.3",
"oletus": "^4.0.0",
"ramda": "^0.29.1",
"remark-cli": "^12.0.0",
"remark-validate-links": "^13.0.0",
"rimraf": "^5.0.0",
"rollup": "^4.5.2",
"sanctuary-benchmark": "^1.0.0",
"sanctuary-either": "^2.0.0",
"sanctuary-type-classes": "^13.0.0",
"tsd": "^0.30.0",
"typescript": "^5.0.4",
"xyz": "^4.0.0"
},
"tsd": {
"directory": "test/types"
}
}