{
  "name": "playwright-html-selector",
  "version": "0.13.0",
  "description": "Select an element by it's HTML",
  "main": "./build/index.js",
  "types": "./build/index.d.ts",
  "files": [
    "build",
    "src"
  ],
  "engines": {
    "node": ">=10.15.0"
  },
  "scripts": {
    "clean": "rimraf build tmp",
    "build": "npm run clean && concurrently \"npm run build:tsc\" \"npm run build:web\"",
    "build:tsc": "tsc -p tsconfig.release.json",
    "build:web": "rollup --config src/rollup.ts",
    "watch:tsc": "tsc -w -p tsconfig.release.json",
    "watch:web": "rollup --watch --config src/rollup.ts",
    "watch": "npm run clean && concurrently --kill-others \"npm run watch:tsc\" \"npm run watch:web\"",
    "lint": "eslint . --ext .ts,.tsx",
    "test": "jest",
    "test:server": "serve --listen 7000 ./tests/assets",
    "release": "np --no-cleanup",
    "version": "npm run build"
  },
  "license": "Apache-2.0",
  "peerDependencies": {
    "playwright-core": "^0.13.0"
  },
  "dependencies": {},
  "devDependencies": {
    "@types/debug": "^4.1.5",
    "@types/jest": "^25.2.1",
    "@types/node": "^13.11.1",
    "@typescript-eslint/eslint-plugin": "^2.27.0",
    "@typescript-eslint/parser": "^2.27.0",
    "concurrently": "^5.1.0",
    "eslint": "^6.8.0",
    "eslint-config-prettier": "^6.10.1",
    "eslint-plugin-jest": "^23.8.2",
    "jest": "^25.3.0",
    "np": "^6.2.0",
    "playwright": "^0.13.0",
    "playwright-utils": "^0.12.0",
    "prettier": "^2.0.4",
    "rimraf": "^3.0.2",
    "rollup": "^2.6.0",
    "rollup-plugin-commonjs": "^10.1.0",
    "rollup-plugin-node-resolve": "^5.2.0",
    "rollup-plugin-typescript": "^1.0.1",
    "serve": "^11.3.0",
    "ts-jest": "^25.3.1",
    "typescript": "^3.8.3"
  }
}
