{
  "name": "io-ts-bigint",
  "version": "2.0.1",
  "description": "io-ts library for bigints",
  "keywords": [
    "io-ts",
    "bigint"
  ],
  "homepage": "https://github.com/EricCrosson/numbers-ts",
  "bugs": {
    "url": "https://github.com/EricCrosson/numbers-ts/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/EricCrosson/numbers-ts.git"
  },
  "license": "ISC",
  "author": "Eric Crosson <eric.s.crosson@utexas.edu> (https://github.com/EricCrosson)",
  "sideEffects": true,
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "files": [
    "dist/src/"
  ],
  "scripts": {
    "prepublishOnly": "npm run clean && npm run build",
    "ava": "ava -v",
    "clean": "rimraf --no-glob dist",
    "build": "tsc --build --incremental --verbose .",
    "coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
    "docs": "docs-ts",
    "lint": "eslint --ext ts . package.json",
    "lint:fix": "eslint --ext ts --fix . package.json",
    "lint-staged": "lint-staged",
    "prettier": "prettier --list-different src/**/*.ts test/**/*.ts",
    "prettier:fix": "prettier --write src/**/*.ts test/**/*.ts",
    "test": "nyc ava",
    "posttest": "npm run docs"
  },
  "devDependencies": {
    "@ericcrosson/eslint-config": "2.0.1",
    "@types/node": "16.11.19",
    "@typescript-eslint/eslint-plugin": "4.28.2",
    "@typescript-eslint/parser": "4.28.2",
    "ava": "3.15.0",
    "ava-fast-check": "4.0.2",
    "codecov": "3.8.2",
    "docs-ts": "0.5.3",
    "eslint": "7.30.0",
    "eslint-config-prettier": "6.15.0",
    "eslint-plugin-ava": "10.5.0",
    "eslint-plugin-fp-ts": "0.2.1",
    "eslint-plugin-import": "2.23.4",
    "eslint-plugin-json-format": "2.0.1",
    "eslint-plugin-prettier": "3.4.0",
    "eslint-plugin-security": "1.4.0",
    "fast-check": "2.17.0",
    "lint-staged": "10.5.4",
    "nyc": "15.1.0",
    "pre-commit": "1.2.2",
    "prettier": "2.2.1",
    "rimraf": "3.0.2",
    "ts-node": "9.1.1",
    "typescript": "4.3.5"
  },
  "peerDependencies": {
    "fp-ts": ">= 2.0.0",
    "io-ts": ">= 2.0.0"
  },
  "pre-commit": "lint-staged",
  "ava": {
    "extensions": [
      "ts"
    ],
    "files": [
      "!dist/**/*.d.ts",
      "test/**/test-*.ts"
    ],
    "require": [
      "ts-node/register"
    ]
  }
}
