{
  "name": "prop-types-ts",
  "version": "0.7.4",
  "description": "Alternative syntax for prop types providing both static and runtime type safety, powered by io-ts",
  "files": [
    "lib",
    "es6"
  ],
  "main": "lib/index.js",
  "module": "es6/index.js",
  "typings": "lib/index.d.ts",
  "sideEffects": false,
  "scripts": {
    "lint": "tslint -p tsconfig.tslint.json",
    "clean": "rm -rf lib/*",
    "mocha": "TS_NODE_CACHE=false mocha -r ts-node/register test/*.tsx",
    "prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --list-different \"{src,test}/**/*.ts\"",
    "fix-prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --write \"{src,test}/**/*.ts\"",
    "test": "npm run lint && npm run prettier && npm run mocha && npm run docs",
    "build": "tsc -p ./tsconfig.build.json && tsc -p ./tsconfig.build-es6.json",
    "prepublish": "npm run build",
    "docs": "docs-ts",
    "postbuild": "import-path-rewrite"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/gcanti/prop-types-ts.git"
  },
  "author": "Giulio Canti <giulio.canti@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/gcanti/prop-types-ts/issues"
  },
  "homepage": "https://github.com/gcanti/prop-types-ts",
  "dependencies": {
    "io-ts": "^2.0.3",
    "fp-ts": "^2.0.0"
  },
  "peerDependencies": {
    "react": "^15.0.0 || ^16.0.0"
  },
  "devDependencies": {
    "@types/mocha": "^5.2.7",
    "@types/node": "^13.1.4",
    "@types/react": "^16.9.17",
    "docs-ts": "^0.3.4",
    "import-path-rewrite": "github:gcanti/import-path-rewrite",
    "mocha": "^5.2.0",
    "prettier": "^1.19.1",
    "react": "^16.12.0",
    "ts-node": "8.5.4",
    "tslint": "^5.20.1",
    "tslint-config-standard": "^9.0.0",
    "typescript": "^3.7.4"
  },
  "tags": [
    "typescript",
    "react",
    "prop-types",
    "io-ts"
  ],
  "keywords": [
    "typescript",
    "react",
    "prop-types",
    "io-ts"
  ]
}
