{
  "name": "@testing-library/preact",
  "version": "3.2.4",
  "description": "Simple and complete Preact DOM testing utilities that encourage good testing practices.",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.mjs",
  "types": "types/index.d.ts",
  "exports": {
    ".": {
      "types": "./types/index.d.ts",
      "browser": "./dist/esm/index.mjs",
      "import": "./dist/esm/index.mjs",
      "require": "./dist/cjs/index.js"
    },
    "./pure": {
      "types": "./pure.d.ts",
      "browser": "./dist/esm/pure.mjs",
      "import": "./dist/esm/pure.mjs",
      "require": "./dist/cjs/pure.js"
    }
  },
  "license": "MIT",
  "author": "Rahim Alwer <rahim_alwer@hotmail.com>",
  "homepage": "https://github.com/testing-library/preact-testing-library#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/testing-library/preact-testing-library"
  },
  "bugs": {
    "url": "https://github.com/testing-library/preact-testing-library/issues"
  },
  "engines": {
    "node": ">= 12"
  },
  "keywords": [
    "testing",
    "preact",
    "ui",
    "dom",
    "jsdom",
    "unit",
    "integration",
    "functional",
    "end-to-end",
    "e2e"
  ],
  "files": [
    "dist",
    "dont-cleanup-after-each.js",
    "pure.js",
    "types/index.d.ts",
    "pure.d.ts"
  ],
  "scripts": {
    "toc": "doctoc README.md",
    "lint": "eslint src/**/*.js --fix",
    "clean": "rimraf dist",
    "build": "npm run build:cjs && npm run build:esm",
    "build:cjs": "babel src --out-dir dist/cjs --config-file ./.babelrc --ignore '**/__tests__/**,**/__mocks__/**'",
    "build:esm": "babel src --no-babelrc --out-file-extension .mjs --out-dir dist/esm --config-file ./.babelrc.esm.json --ignore '**/__tests__/**,**/__mocks__/**'",
    "test": "jest src/__tests__ ",
    "test:watch": "npm test --watch",
    "test:update": "npm test --updateSnapshot --coverage",
    "setup": "npm install && npm run validate",
    "validate": "npm run lint && npm test && npm run clean && npm run build",
    "contributors:add": "all-contributors add",
    "contributors:generate": "all-contributors generate"
  },
  "dependencies": {
    "@testing-library/dom": "^8.11.1"
  },
  "devDependencies": {
    "@babel/cli": "^7.5.5",
    "@babel/core": "^7.5.5",
    "@babel/plugin-proposal-class-properties": "^7.5.5",
    "@babel/plugin-transform-modules-commonjs": "^7.6.0",
    "@babel/plugin-transform-react-jsx": "^7.3.0",
    "@babel/preset-env": "^7.5.5",
    "@commitlint/cli": "^8.2.0",
    "@commitlint/config-conventional": "^8.2.0",
    "@testing-library/jest-dom": "^5.16.1",
    "@types/jest": "^26.0.0",
    "all-contributors-cli": "^6.9.0",
    "babel-eslint": "^10.0.3",
    "babel-jest": "^26.0.1",
    "doctoc": "^1.4.0",
    "eslint": "^7.3.0",
    "eslint-config-standard": "^14.1.0",
    "eslint-plugin-import": "^2.18.2",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-react-hooks": "^4.0.4",
    "eslint-plugin-simple-import-sort": "^5.0.3",
    "eslint-plugin-standard": "^4.0.1",
    "husky": "^4.2.5",
    "jest": "^27.0.6",
    "jest-watch-typeahead": "^0.6.0",
    "lint-staged": "^10.2.11",
    "preact": "^10.0.0-rc.1",
    "preact-portal": "^1.1.3",
    "prettier": "^2.0.5",
    "rimraf": "^3.0.0"
  },
  "peerDependencies": {
    "preact": ">=10 || ^10.0.0-alpha.0 || ^10.0.0-beta.0"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "lint-staged": {
    "README.md": [
      "npm run toc",
      "prettier --parser markdown --write",
      "git add"
    ],
    ".all-contributorsrc": [
      "npm run contributors:generate",
      "git add"
    ],
    "**/*.js": [
      "npm run lint",
      "npm test",
      "git add"
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "jest": {
    "testEnvironment": "jsdom",
    "watchPlugins": [
      "typeahead/filename",
      "typeahead/testname"
    ]
  },
  "publishConfig": {
    "access": "public"
  }
}
