{
  "name": "fp-ts",
  "version": "2.5.0",
  "description": "Functional programming in TypeScript",
  "files": [
    "lib",
    "es6"
  ],
  "main": "lib/index.js",
  "module": "es6/index.js",
  "typings": "lib/index.d.ts",
  "sideEffects": false,
  "scripts": {
    "lint": "tslint -p .",
    "jest-clear-cache": "jest --clearCache",
    "jest": "jest --ci",
    "prettier": "prettier --list-different \"./{src,test,tutorials}/**/*.ts\"",
    "fix-prettier": "prettier --write \"./{src,test,tutorials}/**/*.ts\"",
    "test": "npm run lint && npm run prettier && npm run dtslint && npm run jest-clear-cache && npm run jest && npm run docs",
    "clean": "rimraf lib/* es6/*",
    "prebuild": "npm run clean",
    "build": "tsc -p ./tsconfig.build.json && tsc -p ./tsconfig.build-es6.json",
    "postbuild": "prettier --write \"./{lib,es6}/**/*.ts\"",
    "prepublish": "npm run build",
    "doctoc": "doctoc README.md docs/introduction/code-conventions.md --title \"**Table of contents**\"",
    "mocha": "mocha -r ts-node/register test/*.ts",
    "dtslint": "dtslint dtslint",
    "docs": "docs-ts"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/gcanti/fp-ts.git"
  },
  "author": "Giulio Canti <giulio.canti@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/gcanti/fp-ts/issues"
  },
  "homepage": "https://github.com/gcanti/fp-ts",
  "devDependencies": {
    "@types/benchmark": "^1.0.31",
    "@types/jest": "22.2.2",
    "@types/node": "^12.6.8",
    "@types/prettier": "1.10.0",
    "benchmark": "2.1.4",
    "docs-ts": "^0.3.4",
    "doctoc": "^1.4.0",
    "dtslint": "github:gcanti/dtslint",
    "fast-check": "^1.12.1",
    "jest": "^24.8.0",
    "mocha": "^5.2.0",
    "prettier": "^1.19.1",
    "rimraf": "2.6.2",
    "ts-jest": "^24.0.2",
    "ts-node": "^8.0.2",
    "tslint": "5.11.0",
    "tslint-config-standard": "8.0.1",
    "tslint-immutable": "^6.0.1",
    "typescript": "^3.7.2"
  },
  "tags": [
    "typescript",
    "algebraic-data-types",
    "functional-programming"
  ],
  "keywords": [
    "typescript",
    "algebraic-data-types",
    "functional-programming"
  ],
  "dependencies": {}
}
