{
  "name": "igogo",
  "version": "1.9.0",
  "description": "Fast Either and Maybe from Fantasy Land with Flow and TypeScript support",
  "repository": "git@github.com:bigslycat/igogo.git",
  "author": "Pavel Tereschenko <me@stupidcat.wtf> (https://github.com/bigslycat)",
  "license": "MIT",
  "main": "lib/index.js",
  "module": "lib/index.es.js",
  "files": [
    "README.md",
    "LICENSE.md",
    "lib",
    "esm",
    "src"
  ],
  "types": "src/index.d.ts",
  "scripts": {
    "build": "rollup -c",
    "lint": "eslint .",
    "flow": "flow",
    "test": "ava --verbose",
    "test:nyc": "nyc ava --verbose",
    "coverage": "nyc report --reporter=text-lcov | coveralls",
    "semantic-release": "semantic-release"
  },
  "husky": {
    "hooks": {
      "pre-commit": "yarn lint && yarn flow"
    }
  },
  "ava": {
    "require": [
      "@babel/register"
    ]
  },
  "nyc": {
    "require": [
      "esm",
      "@babel/register"
    ],
    "reporter": [
      "lcov",
      "text"
    ],
    "exclude": [
      "**/index.js",
      "**/*.config.js",
      "**/*.test.js",
      "lib"
    ],
    "sourceMap": false,
    "instrument": false
  },
  "dependencies": {
    "core-js": "^3.6.4"
  },
  "devDependencies": {
    "@babel/core": "^7.8.4",
    "@babel/preset-env": "^7.8.4",
    "@babel/preset-flow": "^7.8.3",
    "@babel/register": "^7.8.3",
    "@semantic-release/changelog": "^5.0.0",
    "@semantic-release/commit-analyzer": "^8.0.1",
    "@semantic-release/git": "^9.0.0",
    "@semantic-release/github": "^7.0.4",
    "@semantic-release/npm": "^7.0.3",
    "@semantic-release/release-notes-generator": "^9.0.1",
    "ava": "^3.4.0",
    "babel-eslint": "^10.1.0",
    "babel-plugin-istanbul": "^6.0.0",
    "eslint": "^6.8.0",
    "eslint-config-airbnb-base": "^14.0.0",
    "eslint-config-prettier": "^6.10.0",
    "eslint-plugin-flowtype": "^4.6.0",
    "eslint-plugin-import": "^2.20.1",
    "eslint-plugin-prettier": "^3.1.2",
    "esm": "^3.2.25",
    "flow-bin": "^0.119.1",
    "husky": "^4.2.3",
    "nyc": "^15.0.0",
    "prettier": "^1.19.1",
    "rollup": "^1.31.1",
    "rollup-plugin-babel": "^4.3.3",
    "rollup-plugin-commonjs": "^10.1.0",
    "rollup-plugin-flow-entry": "^0.3.3",
    "semantic-release": "^17.0.4",
    "sinon": "^9.0.0",
    "typescript": "^3.8.2"
  },
  "keywords": [
    "Maybe",
    "Either",
    "ADT",
    "Flow",
    "TypeScript",
    "TS",
    "FL",
    "Fantasy Land"
  ]
}
