UNPKG

@stencil/playwright

Version:

Testing adapter to use Playwright with Stencil

78 lines (77 loc) 2.28 kB
{ "name": "@stencil/playwright", "version": "0.2.1", "description": "Testing adapter to use Playwright with Stencil", "main": "dist/index.cjs", "module": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "build": "npm run build.empty && npm run build.types && npm run build.bundle", "build.empty": "rm -rf ./dist && rm -f ./build/build.js", "build.types": "tsc --emitDeclarationOnly --outDir ./dist", "build.bundle": "tsc ./build/build.ts && node ./build/build.js", "format": "npm run format.base -- --write", "format.base": "prettier --cache \"src/**/*.ts\"", "format.dry-run": "npm run format.base -- --list-different", "lint": "eslint \"src/**/*.ts\"", "spellcheck": "cspell --no-progress \"src/**/*.ts\" \"build/**/*.ts\" \"*.md\"", "test": "jest" }, "repository": { "type": "git", "url": "git+https://github.com/ionic-team/stencil-playwright.git" }, "keywords": [ "stencil", "playwright", "testing" ], "author": "Stencil Team", "license": "MIT", "bugs": { "url": "https://github.com/ionic-team/stencil-playwright/issues" }, "homepage": "https://github.com/ionic-team/stencil-playwright#readme", "engines": { "node": ">=12.0.0", "npm": ">=6.0.0" }, "volta": { "node": "20.11.1", "npm": "10.4.0" }, "peerDependencies": { "@playwright/test": ">=1.41.2", "@stencil/core": ">=4.13.0" }, "devDependencies": { "@ionic/prettier-config": "^4.0.0", "@playwright/test": "^1.41.2", "@stencil/core": "^4.13.0", "@types/eslint": "^8.56.2", "@types/jest": "^29.5.12", "@types/node": "^20.11.19", "@typescript-eslint/eslint-plugin": "^7.0.2", "@typescript-eslint/parser": "^7.0.2", "cspell": "^8.6.0", "esbuild": "^0.20.1", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-jsdoc": "^48.2.0", "eslint-plugin-simple-import-sort": "^12.0.0", "eslint-plugin-unused-imports": "^3.1.0", "jest": "^29.7.0", "prettier": "^3.2.5", "ts-jest": "^29.1.2", "ts-node": "^10.9.2", "typescript": "^5.3.3" }, "prettier": "@ionic/prettier-config", "dependencies": { "deepmerge": "^4.3.1", "find-up": "^7.0.0" } }