{
  "name": "@testing-library/dom",
  "version": "7.2.2",
  "description": "Simple and complete DOM testing utilities that encourage good testing practices.",
  "main": "dist/index.js",
  "module": "dist/@testing-library/dom.esm.js",
  "umd:main": "dist/@testing-library/dom.umd.js",
  "source": "src/index.js",
  "keywords": [
    "testing",
    "ui",
    "dom",
    "jsdom",
    "unit",
    "integration",
    "functional",
    "end-to-end",
    "e2e"
  ],
  "author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)",
  "license": "MIT",
  "engines": {
    "node": ">=10"
  },
  "scripts": {
    "build": "kcd-scripts build --ignore \"**/__tests__/**,**/__node_tests__/**,**/__mocks__/**\" && kcd-scripts build --bundle --no-clean",
    "lint": "kcd-scripts lint",
    "setup": "npm install && npm run validate -s",
    "test": "kcd-scripts test",
    "test:debug": "node --inspect-brk ./node_modules/.bin/jest --watch --runInBand",
    "test:update": "npm test -- --updateSnapshot --coverage",
    "validate": "kcd-scripts validate"
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@babel/runtime": "^7.9.2",
    "@types/testing-library__dom": "^7.0.0",
    "aria-query": "^4.0.2",
    "dom-accessibility-api": "^0.4.2",
    "pretty-format": "^25.1.0"
  },
  "devDependencies": {
    "@testing-library/jest-dom": "^5.1.1",
    "jest-in-case": "^1.0.2",
    "jest-serializer-ansi": "^1.0.3",
    "jest-watch-select-projects": "^2.0.0",
    "jsdom": "^16.2.1",
    "kcd-scripts": "^5.6.0"
  },
  "eslintConfig": {
    "extends": "./node_modules/kcd-scripts/eslint.js",
    "rules": {
      "import/prefer-default-export": "off",
      "import/no-unassigned-import": "off",
      "import/no-useless-path-segments": "off",
      "no-console": "off"
    }
  },
  "eslintIgnore": [
    "node_modules",
    "coverage",
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/testing-library/dom-testing-library"
  },
  "bugs": {
    "url": "https://github.com/testing-library/dom-testing-library/issues"
  },
  "homepage": "https://github.com/testing-library/dom-testing-library#readme"
}
