-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
48 lines (48 loc) · 1.19 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
{
"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"
}