{
  "manifest": {
    "name": "jest-watch-typeahead",
    "version": "1.1.0",
    "main": "build/index.js",
    "exports": {
      ".": "./build/index.js",
      "./filename": "./build/file_name_plugin/plugin.js",
      "./testname": "./build/test_name_plugin/plugin.js",
      "./package.json": "./package.json"
    },
    "type": "module",
    "author": {
      "name": "Rogelio Guzman",
      "email": "rogelioguzmanh@gmail.com"
    },
    "description": "Jest plugin for filtering by filename or test name",
    "license": "MIT",
    "repository": {
      "type": "git",
      "url": "https://github.com/jest-community/jest-watch-typeahead.git"
    },
    "homepage": "https://github.com/jest-community/jest-watch-typeahead",
    "files": [
      "build/",
      "filename.js",
      "testname.js"
    ],
    "scripts": {
      "test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules\" jest",
      "lint": "eslint .",
      "prebuild": "rimraf build",
      "build": "babel --extensions .js,.ts src -d build && rimraf **/*.test.{js,ts},integration build/**/__tests__ build/test_utils",
      "prepublish": "yarn build",
      "format": "prettier --write \"**/*.js\" \"**/*.md\" \"**/*.ts\"",
      "typecheck": "yarn tsc -p ."
    },
    "dependencies": {
      "ansi-escapes": "^4.3.1",
      "chalk": "^4.0.0",
      "jest-regex-util": "^28.0.0",
      "jest-watcher": "^28.0.0",
      "slash": "^4.0.0",
      "string-length": "^5.0.1",
      "strip-ansi": "^7.0.1"
    },
    "devDependencies": {
      "@babel/cli": "^7.8.4",
      "@babel/core": "^7.9.6",
      "@babel/preset-env": "^7.9.6",
      "@babel/preset-typescript": "^7.10.4",
      "@jest/globals": "^28.0.0",
      "@jest/types": "^28.0.0",
      "@semantic-release/changelog": "^5.0.1",
      "@semantic-release/git": "^9.0.0",
      "@types/jest": "^27.0.0",
      "@types/node": "^16.0.0",
      "@typescript-eslint/eslint-plugin": "^5.0.0",
      "@typescript-eslint/parser": "^5.0.0",
      "babel-jest": "^28.0.0",
      "babel-plugin-add-import-extension": "^1.6.0",
      "cross-env": "^7.0.3",
      "eslint": "^8.0.0",
      "eslint-config-airbnb-base": "^15.0.0",
      "eslint-config-prettier": "^8.0.0",
      "eslint-plugin-import": "^2.20.2",
      "eslint-plugin-jest": "^26.0.0",
      "eslint-plugin-prettier": "^4.0.0",
      "jest": "^28.0.0",
      "prettier": "^2.1.1",
      "rimraf": "^3.0.2",
      "semantic-release": "^17.4.3",
      "semver": "^7.3.5",
      "typescript": "^4.0.2"
    },
    "peerDependencies": {
      "jest": "^27.0.0 || ^28.0.0"
    },
    "jest": {
      "extensionsToTreatAsEsm": [
        ".ts"
      ],
      "watchPlugins": [
        "<rootDir>/filename",
        "<rootDir>/testname"
      ],
      "snapshotSerializers": [
        "<rootDir>/node_modules/pretty-format/build/plugins/ConvertAnsi"
      ],
      "testPathIgnorePatterns": [
        "<rootDir>/build/.*",
        "<rootDir>/src/__tests__/pluginTester.js"
      ],
      "transformIgnorePatterns": [
        "/node_modules/",
        "/__mocks__/"
      ]
    },
    "engines": {
      "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
    },
    "release": {
      "branches": [
        "main"
      ],
      "plugins": [
        "@semantic-release/commit-analyzer",
        "@semantic-release/release-notes-generator",
        "@semantic-release/changelog",
        "@semantic-release/npm",
        "@semantic-release/git",
        "@semantic-release/github"
      ]
    },
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-jest-watch-typeahead-1.1.0-b4a6826dfb9c9420da2f7bc900de59dad11266a9-integrity/node_modules/jest-watch-typeahead/package.json",
    "readmeFilename": "README.md",
    "readme": "[![Build Status](https://github.com/jest-community/jest-watch-typeahead/actions/workflows/nodejs.yml/badge.svg?branch=main)](https://github.com/jest-community/jest-watch-typeahead/actions/workflows/nodejs.yml) [![npm version](https://badge.fury.io/js/jest-watch-typeahead.svg)](https://badge.fury.io/js/jest-watch-typeahead)\n\n<div align=\"center\">\n  <a href=\"https://jestjs.io/\">\n    <img width=\"150\" height=\"150\" vspace=\"\" hspace=\"25\" src=\"https://jestjs.io/img/jest.png\">\n  </a>\n  <h1>jest-watch-typeahead</h1>\n  <p>Filter your tests by file name or test name</p>\n</div>\n\n![watch](https://user-images.githubusercontent.com/574806/40672937-25dab91a-6325-11e8-965d-4e55ef23e135.gif)\n\n## Usage\n\n### Install\n\nInstall `jest`_(it needs Jest 27+)_ and `jest-watch-typeahead`\n\n```bash\nyarn add --dev jest jest-watch-typeahead\n\n# or with NPM\n\nnpm install --save-dev jest jest-watch-typeahead\n```\n\n### Add it to your Jest config\n\nIn your `package.json`\n\n```json\n{\n  \"jest\": {\n    \"watchPlugins\": [\n      \"jest-watch-typeahead/filename\",\n      \"jest-watch-typeahead/testname\"\n    ]\n  }\n}\n```\n\nOr in `jest.config.js`\n\n```js\nmodule.exports = {\n  watchPlugins: [\n    'jest-watch-typeahead/filename',\n    'jest-watch-typeahead/testname',\n  ],\n};\n```\n\n### Configuring your key and prompt name\n\n```js\nmodule.exports = {\n  watchPlugins: [\n    [\n      'jest-watch-typeahead/filename',\n      {\n        key: 'k',\n        prompt: 'do something with my custom prompt',\n      },\n    ],\n  ],\n};\n```\n\n### Run Jest in watch mode\n\n```bash\nyarn jest --watch\n```\n",
    "licenseText": "MIT License\n\nCopyright (c) 2018 Rogelio Guzman\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz#b4a6826dfb9c9420da2f7bc900de59dad11266a9",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz",
    "hash": "b4a6826dfb9c9420da2f7bc900de59dad11266a9",
    "integrity": "sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==",
    "registry": "npm",
    "packageName": "jest-watch-typeahead",
    "cacheIntegrity": "sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw== sha1-tKaCbfuclCDaL3vJAN5Z2tESZqk="
  },
  "registry": "npm",
  "hash": "b4a6826dfb9c9420da2f7bc900de59dad11266a9"
}