{
  "name": "playwright-fluent",
  "version": "1.61.0",
  "description": "Fluent API around playwright",
  "main": "lib/index.js",
  "typings": "lib/index.d.ts",
  "files": [
    "lib",
    "!*.test.js",
    "!*.test.d.ts"
  ],
  "scripts": {
    "build-device-names": "ts-node ./src/devices/device-names-builder.ts",
    "build-device-descriptors": "ts-node ./src/devices/device-descriptors-builder.ts",
    "build": "rimraf lib && npm run format && npm run lint && tsc",
    "check-format": "prettier --list-different \"src/**/*.ts\" ",
    "format": "prettier --loglevel warn --list-different --write \"src/**/*.ts\" ",
    "install-peers": "npm install --no-save playwright@latest",
    "jest-init": "jest --init",
    "lint-fix": "npm run lint -- --fix",
    "lint": "eslint . --ext .js,.ts --format visualstudio --no-color --max-warnings 10 --report-unused-disable-directives",
    "package": "rimraf package && rm -f playwright-fluent*.tgz && npm pack",
    "test": "jest --config=jest.config.js",
    "tsc-init": "tsc --init",
    "tsc": " tsc --listEmittedFiles"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hdorgeval/playwright-fluent.git"
  },
  "engines": {
    "node": ">=12"
  },
  "author": "Henri d'Orgeval",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/hdorgeval/playwright-fluent/issues"
  },
  "keywords": [
    "playwright",
    "fluent-api",
    "e2e",
    "test-automation",
    "test-runner"
  ],
  "homepage": "https://github.com/hdorgeval/playwright-fluent#readme",
  "reveal": true,
  "devDependencies": {
    "@types/debug": "4.1.7",
    "@types/jest": "29.5.0",
    "@types/node": "18.15.11",
    "@typescript-eslint/eslint-plugin": "5.58.0",
    "@typescript-eslint/parser": "5.58.0",
    "eslint": "8.38.0",
    "eslint-config-prettier": "8.8.0",
    "eslint-plugin-import": "2.27.5",
    "eslint-plugin-prettier": "4.2.1",
    "jest": "29.5.0",
    "prettier": "2.8.7",
    "rimraf": "5.0.0",
    "simple-fake-server": "3.4.0",
    "ts-jest": "29.1.0",
    "ts-node": "10.9.1",
    "typescript": "5.0.4"
  },
  "dependencies": {
    "@types/uuid": "9.0.1",
    "@types/which": "3.0.0",
    "escape-html": "1.0.3",
    "is-ci": "3.0.1",
    "tslib": "2.5.0",
    "uuid": "9.0.0",
    "which": "3.0.0"
  },
  "peerDependencies": {
    "playwright": ">= 1.12.0"
  }
}

