UNPKG

playwright-indexeddb

Version:

Access and manipulate IndexedDB within Playwright tests

53 lines (52 loc) 1.23 kB
{ "name": "playwright-indexeddb", "version": "1.0.0", "description": "Access and manipulate IndexedDB within Playwright tests", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "test": "playwright test", "lint": "eslint . --ext .ts", "lint:fix": "eslint . --ext .ts --fix", "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"", "prepare": "husky install", "prepublishOnly": "npm run build" }, "keywords": [ "playwright", "testing", "indexeddb", "browser", "database" ], "author": "", "license": "MIT", "devDependencies": { "@playwright/test": "^1.40.0", "@types/node": "^20.10.1", "@typescript-eslint/eslint-plugin": "^6.13.1", "@typescript-eslint/parser": "^6.13.1", "eslint": "^8.54.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-prettier": "^5.0.1", "husky": "^8.0.3", "lint-staged": "^15.1.0", "prettier": "^3.1.0", "typescript": "^5.3.2" }, "peerDependencies": { "@playwright/test": "^1.40.0" }, "files": [ "dist", "README.md", "LICENSE" ], "lint-staged": { "*.ts": [ "eslint --fix", "prettier --write" ] } }