{
  "name": "@testing-library/cypress",
  "version": "7.0.7",
  "description": "Simple and complete custom Cypress commands and utilities that encourage good testing practices.",
  "main": "dist/index.js",
  "types": "types/index.d.ts",
  "engines": {
    "node": ">=10",
    "npm": ">=6"
  },
  "scripts": {
    "build": "kcd-scripts build",
    "lint": "kcd-scripts lint",
    "setup": "npm install && npm run validate -s",
    "test": "npm-run-all --parallel test:unit test:cypress",
    "test:cypress": "npm run test:cypress:run",
    "test:cypress:dev": "npm run test:cypress:open",
    "test:cypress:open": "cypress open",
    "test:cypress:run": "cypress run",
    "test:unit": "kcd-scripts test --no-watch",
    "test:unit:watch": "kcd-scripts test",
    "typecheck": "kcd-scripts typecheck --build types",
    "validate": "kcd-scripts validate build,lint,test,typecheck"
  },
  "files": [
    "dist",
    "add-commands.js",
    "types/*.d.ts"
  ],
  "keywords": [
    "testing",
    "cypress",
    "ui",
    "dom",
    "integration",
    "functional",
    "end-to-end",
    "e2e"
  ],
  "author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)",
  "license": "MIT",
  "dependencies": {
    "@babel/runtime": "^7.12.5",
    "@testing-library/dom": "^7.29.6"
  },
  "devDependencies": {
    "cypress": "^8.0.0",
    "kcd-scripts": "^7.5.1",
    "npm-run-all": "^4.1.5",
    "typescript": "^4.1.2"
  },
  "peerDependencies": {
    "cypress": "^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
  },
  "eslintConfig": {
    "extends": "./node_modules/kcd-scripts/eslint.js",
    "rules": {
      "import/prefer-default-export": "off",
      "import/no-unassigned-import": "off",
      "jest/valid-expect": "off"
    }
  },
  "eslintIgnore": [
    "node_modules",
    "coverage",
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/kentcdodds/cypress-testing-library"
  },
  "bugs": {
    "url": "https://github.com/kentcdodds/cypress-testing-library/issues"
  },
  "homepage": "https://github.com/kentcdodds/cypress-testing-library#readme"
}
