{
  "name": "antd-mask-input",
  "version": "2.0.7",
  "description": "Ant Design Mask Input",
  "main": "build/main/index.js",
  "typings": "build/main/index.d.ts",
  "module": "build/module/index.js",
  "repository": "https://github.com/antoniopresto/antd-mask-input",
  "license": "MIT",
  "keywords": [
    "react",
    "antd",
    "ant design",
    "mask input",
    "mask",
    "masked"
  ],
  "author": "@antoniopresto",
  "contributors": [
    {
      "name": "Eduardo Amaral",
      "url": "https://rolimans.dev"
    }
  ],
  "scripts": {
    "describe": "npm-scripts-info",
    "build": "run-s clean && run-p build:*",
    "build:main": "tsc -p tsconfig.prod.json --module commonjs --outDir build/main",
    "build:module": "tsc -p tsconfig.prod.json",
    "fix": "run-s fix:*",
    "test": "jest",
    "test:unit": "nyc --silent jest",
    "watch": "run-s clean build:main && run-p \"build:main -- -w\" \"test:unit -- --watch --verbose\"",
    "cov": "run-s build test:unit cov:html && opn coverage/index.html",
    "cov:html": "nyc report --reporter=html",
    "cov:send": "nyc report --reporter=lcov > coverage.lcov && codecov",
    "cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100",
    "doc": "run-s doc:html && opn build/docs/index.html",
    "doc:html": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --out build/docs",
    "doc:json": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --json build/docs/typedoc.json",
    "doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs",
    "version": "standard-version",
    "reset": "git clean -dfx && git reset --hard && yarn install",
    "clean": "trash build test",
    "all": "run-s reset test",
    "prepare-release": "run-s all version",
    "storybook": "start-storybook -p 6006",
    "build-storybook": "build-storybook"
  },
  "scripts-info": {
    "info": "Display information about the package scripts",
    "build": "Clean and rebuild the project",
    "test": "unit test the project",
    "watch": "Watch and rebuild the project on save, then rerun relevant tests",
    "cov": "Rebuild, run tests, then create and open the coverage report",
    "doc": "Generate HTML API documentation and open it in a browser",
    "doc:json": "Generate API documentation in typedoc JSON format",
    "version": "Bump package.json version, update CHANGELOG.md, tag release",
    "reset": "Delete all untracked files and reset the repo to the last commit",
    "prepare-release": "One-step: clean, build, test, publish docs, and prep a release"
  },
  "peerDependencies": {
    "antd": ">=4.19.0",
    "react": ">=16.0.0"
  },
  "devDependencies": {
    "@babel/core": "^7.6.0",
    "@storybook/addon-actions": "^5.2.0",
    "@storybook/addon-console": "^1.2.1",
    "@storybook/addon-links": "^5.2.0",
    "@storybook/addons": "^5.2.0",
    "@storybook/react": "^5.2.0",
    "babel-loader": "^8.0.6",
    "babel-preset-react-app": "^9.0.1",
    "@testing-library/react": "^12.1.4",
    "@types/jest": "^27.4.1",
    "@types/react": "^17.0.40",
    "antd": "^4.19.1",
    "codecov": "^3.1.0",
    "cz-conventional-changelog": "^2.1.0",
    "gh-pages": "^2.0.1",
    "jest": "^27.5.1",
    "jsdom-global": "^3.0.2",
    "npm-run-all": "^4.1.5",
    "nyc": "^13.1.0",
    "opn-cli": "^4.0.0",
    "react": "^17.0.2",
    "prettier": "^2.5.1",
    "react-dom": "^17.0.2",
    "standard-version": "^8.0.1",
    "trash-cli": "^1.4.0",
    "ts-jest": "^27.1.3",
    "typedoc": "^0.22.13",
    "typescript": "4.6.2",
    "storybook": "^6.4.19"
  },
  "resolutions": {
    "typescript": "4.6.2"
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "prettier": {
    "singleQuote": true
  },
  "nyc": {
    "exclude": [
      "**/*.spec.js"
    ]
  },
  "dependencies": {
    "imask": "6.4.2"
  },
  "files": [
    "build",
    "README.md"
  ]
}
