{
  "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_OPTIONS='--experimental-modules --no-warnings' ./scripts/bench",
    "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 git@github.com: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 <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": {
    "sanctuary-show": "^2.0.0",
    "sanctuary-type-identifiers": "^3.0.0"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^17.0.0",
    "@rollup/plugin-node-resolve": "^11.0.0",
    "c8": "^7.0.0",
    "chai": "^4.1.2",
    "codecov": "^3.6.1",
    "es-check": "^5.0.0",
    "eslint": "^7.0.0",
    "eslint-config-warp": "^4.0.0",
    "fantasy-laws": "^1.0.1",
    "jsverify": "^0.8.3",
    "oletus": "^3.0.0",
    "ramda": "^0.27.0",
    "remark-cli": "^9.0.0",
    "remark-validate-links": "^10.0.0",
    "rimraf": "^3.0.0",
    "rollup": "^2.0.0",
    "sanctuary-benchmark": "^1.0.0",
    "sanctuary-either": "^2.0.0",
    "sanctuary-type-classes": "^12.0.0",
    "tsd": "^0.14.0",
    "typescript": "^4.0.2",
    "xyz": "^4.0.0"
  },
  "tsd": {
    "directory": "test/types"
  }
}
