{
  "name": "puppeteer-ui-testkit",
  "version": "1.0.1",
  "homepage": "https://github.com/yoniaiz/puppeteer-ui-teskit",
  "description": "Puppeteer UI TestKit is an open-source npm package that simplifies UI testing for visual regression and accessibility using Puppeteer and axe-core. It provides an intuitive toolkit for automating UI tests, capturing screenshots, and performing accessibility checks.",
  "main": "dist/index.js",
  "bin": "bin/index.js",
  "types": "build/types/Testkit.types.d.ts",
  "type": "module",
  "files": [
    "build",
    "bin"
  ],
  "bugs": {
    "url": "https://github.com/yoniaiz/puppeteer-ui-teskit/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/yoniaiz/puppeteer-ui-teskit"
  },
  "license": "MIT",
  "scripts": {
    "start": "node bin/index.js --statics sandbox/public --port 3000",
    "clean": "rimraf build tmp",
    "copy-assets": "copyfiles -u 1 \"src/assets/**/*\" build",
    "prebuild": "npm run clean && npm run copy-assets",
    "build": "tsc -p tsconfig.json",
    "build:watch": "npm run copy-assets && tsc -w -p tsconfig.json",
    "build:release": "npm run clean && npm run copy-assets && tsc -p tsconfig.release.json",
    "lint": "eslint . --ext .ts --ext .mts",
    "prettier": "prettier --config .prettierrc --write .",
    "prettier:check": "prettier --config .prettierrc --check .",
    "precommit": "npm run prettier && npm run lint",
    "test": "jest",
    "test:e2e": "npm run start",
    "test:watch": "jest --watch",
    "test:all": "npm run test && npm run test:e2e"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "volta": {
    "node": "20.3.0"
  },
  "keywords": [
    "testing",
    "ui",
    "puppeteer",
    "visual",
    "regression",
    "accessibility",
    "axe-core",
    "axe",
    "testkit",
    "test",
    "visual-regression",
    "visual-regression-testing",
    "e2e",
    "e2e-testing",
    "testing-tools"
  ],
  "author": "Yonatan Aizenshtein <https://github.com/yoniaiz>",
  "devDependencies": {
    "@babel/preset-env": "^7.22.5",
    "@babel/preset-typescript": "^7.22.5",
    "@types/jest": "^29.5.2",
    "@types/node": "^20.4.1",
    "@types/pixelmatch": "^5.2.4",
    "@types/pngjs": "^6.0.1",
    "@types/prompts": "^2.4.4",
    "@typescript-eslint/eslint-plugin": "^5.61.0",
    "@typescript-eslint/parser": "^5.61.0",
    "babel-plugin-transform-import-meta": "^2.2.0",
    "copyfiles": "^2.4.1",
    "eslint": "^8.44.0",
    "eslint-config-prettier": "^8.8.0",
    "eslint-plugin-jest": "^27.2.2",
    "husky": "^8.0.3",
    "jest": "^29.6.1",
    "jest-ts-webcompat-resolver": "^1.0.0",
    "prettier": "^3.0.0",
    "typescript": "^5.1.6"
  },
  "dependencies": {
    "@axe-core/puppeteer": "^4.7.3",
    "ci-info": "^3.8.0",
    "commander": "^11.0.0",
    "consola": "^3.2.3",
    "finalhandler": "^1.2.0",
    "glob": "^10.3.3",
    "open": "^9.1.0",
    "piscina": "^4.0.0",
    "pixelmatch": "^5.3.0",
    "pngjs": "^7.0.0",
    "prompts": "^2.4.2",
    "puppeteer": "^20.8.0",
    "serve-static": "^1.15.0",
    "sharp": "^0.32.2"
  }
}
