UNPKG

playwright-fluent

Version:
79 lines (78 loc) 2.35 kB
{ "name": "playwright-fluent", "version": "1.44.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 --runInBand", "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": "27.0.2", "@types/node": "16.9.6", "@typescript-eslint/eslint-plugin": "4.31.2", "@typescript-eslint/parser": "4.31.2", "eslint": "7.32.0", "eslint-config-prettier": "8.3.0", "eslint-plugin-import": "2.24.2", "eslint-plugin-prettier": "4.0.0", "jest": "27.2.1", "prettier": "2.4.1", "rimraf": "3.0.2", "simple-fake-server": "3.4.0", "ts-jest": "27.0.5", "ts-node": "10.2.1", "typescript": "4.4.3" }, "dependencies": { "@types/uuid": "8.3.1", "@types/which": "2.0.1", "escape-html": "1.0.3", "is-ci": "3.0.0", "tslib": "2.3.1", "uuid": "8.3.2", "which": "2.0.2" }, "peerDependencies": { "playwright": ">= 1.9.0" } }