UNPKG

playwright-aws-lambda

Version:

Support for running Microsoft's Playwrite on AWS Lambda and Google Cloud functions

48 lines (47 loc) 1.34 kB
{ "name": "playwright-aws-lambda", "version": "0.10.0", "description": "Support for running Microsoft's Playwrite on AWS Lambda and Google Cloud functions", "main": "./dist/src/", "author": "Austin Kelleher, a@alk.im", "license": "MIT", "publishConfig": { "access": "public" }, "engines": { "node": ">= 8.0.0" }, "scripts": { "compile-src-cjs": "tsc --declaration --declarationDir ./dist -p tsconfig-src-cjs.json && cp -R ./src/bin ./dist/src", "precompile-src": "rm -rf ./dist", "compile-src": "yarn compile-src-cjs", "lint": "tslint --format codeFrame --project tsconfig.json 'src/**/*.ts' 'test/**/*.ts'", "pretest": "yarn lint", "test": "jest", "build": "yarn compile-src", "format-code": "prettier --write '**/*.[jt]s'" }, "dependencies": { "lambdafs": "^2.1.1" }, "peerDependencies": { "playwright-core": "^1" }, "devDependencies": { "@types/debug": "^4.1.5", "@types/jest": "^26.0.9", "@types/node": "~14", "husky": "^4.2.5", "jest": "^26.3.0", "lint-staged": "10.2.11", "nodemon": "^2.0.4", "pixelmatch": "^5.2.1", "playwright-core": "^1.3.0", "pngjs": "^5.0.0", "prettier": "^2.0.5", "ts-jest": "^26.2.0", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "typescript": "^3.9.7" } }