UNPKG

chrome-aws-lambda

Version:

Chromium Binary for AWS Lambda and Google Cloud Functions

67 lines (66 loc) 1.45 kB
{ "name": "chrome-aws-lambda", "private": false, "version": "10.1.0", "author": { "name": "Alix Axel" }, "license": "MIT", "description": "Chromium Binary for AWS Lambda and Google Cloud Functions", "main": "build/index.js", "types": "build/index.d.ts", "files": [ "bin", "build", "typings" ], "engines": { "node": ">= 10.16" }, "scripts": { "build": "rimraf build && tsc -p tsconfig.json", "postversion": "git push && git push --tags && npm publish", "prepack": "npm run build", "preversion": "npm run build" }, "dependencies": { "lambdafs": "^2.0.3" }, "devDependencies": { "@types/node": "^10.17.55", "puppeteer-core": "^10.1.0", "rimraf": "^3.0.2", "typescript": "^4.3.2" }, "peerDependencies": { "puppeteer-core": "^10.1.0" }, "bugs": { "url": "https://github.com/alixaxel/chrome-aws-lambda/issues" }, "homepage": "https://github.com/alixaxel/chrome-aws-lambda", "repository": { "type": "git", "url": "git://github.com/alixaxel/chrome-aws-lambda.git" }, "keywords": [ "aws", "browser", "chrome", "chromium", "lambda", "puppeteer", "serverless" ], "prettier": { "arrowParens": "always", "bracketSpacing": true, "jsxBracketSameLine": false, "printWidth": 140, "semi": true, "singleQuote": true, "tabWidth": 2, "trailingComma": "es5", "useTabs": false } }