reason-future
Version:
A lightweight, functional alternative to Js.Promise for ReScript, designed for better composability and error handling.
49 lines (48 loc) • 1.22 kB
JSON
{
"name": "reason-future",
"version": "3.0.0",
"scripts": {
"build": "rescript build -with-deps",
"start": "rescript build -with-deps -w",
"clean": "rescript clean -with-deps",
"test": "yarn clean ; yarn build; jest --coverage --coverageReporters=text-lcov | coveralls",
"test:only": "yarn jest"
},
"files": [
"src/Future.res",
"src/FutureResult.res",
"src/FutureJs.res",
"rescript.json",
"README.md"
],
"keywords": [
"Rescript",
"Future",
"Promise",
"JavaScript",
"Async"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@glennsl/rescript-jest": "0.11.0",
"coveralls": "3.1.0",
"rescript": "11.1.4"
},
"description": "A lightweight, functional alternative to Js.Promise for ReScript, designed for better composability and error handling.",
"main": "index.js",
"dependencies": {
"@rescript/core": "^1.6.1"
},
"peerDependencies": {
"rescript": "^11.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rationaljs/future.git"
},
"bugs": {
"url": "https://github.com/rationaljs/future/issues"
},
"homepage": "https://github.com/rationaljs/future#readme"
}