{
  "name": "ts-do",
  "version": "2.0.0",
  "description": "Do like notation for typescript and fp-ts",
  "files": [
    "dist"
  ],
  "main": "dist/index.js",
  "typings": "dist/index.d.js",
  "scripts": {
    "build": "rm -rf dist/ && tsc -d -p tsconfig.dist.json",
    "builddev": "rm -rf dist/ && tsc -d -p tsconfig.json",
    "lint": "tslint src/**/*.ts test/**/*.ts",
    "prepare": "yarn run build",
    "pretest": "yarn run lint",
    "test": "jest --coverage --testPathPattern=.+\\.spec\\.ts",
    "test:watch": "yarn test -- --watch"
  },
  "keywords": [
    "functional",
    "do",
    "notation",
    "fp-ts",
    "let",
    "for",
    "exec",
    "bind",
    "sequence",
    "into"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/teves-castro/ts-do.git"
  },
  "bugs": {
    "url": "https://github.com/teves-castro/ts-do/issues"
  },
  "author": "Vítor Castro",
  "license": "MIT",
  "dependencies": {
    "fp-ts": "^2.0.0"
  },
  "devDependencies": {
    "@types/jest": ">=22.0.1",
    "@types/jest-matchers": ">=20.0.1",
    "@types/ramda": "^0.26.8",
    "jest": ">=22.1.4",
    "jest-matchers": ">=20.0.3",
    "prettier": ">=1.11.1",
    "ramda": ">=0.25.0",
    "ts-jest": ">=22.0.1",
    "ts-lint": ">=4.5.1",
    "ts-node": ">=4.1.0",
    "tslint": "^5.9.1",
    "typescript": "^3.0.3"
  },
  "jest": {
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?)$",
    "moduleFileExtensions": [
      "ts",
      "js",
      "json"
    ]
  }
}
