forked from serverless/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 979 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "aws-node-puppeteer",
"version": "1.0.0",
"description": "When it comes to AWS Lambda function , they have their own limits as follows  So , When you try to use Puppeteer your deployment package size(unzipped) easily go's above 250 mb because When you install Puppeteer, it downloads a recent version of Chromium (~170MB Mac, ~282MB Linux, ~280MB Win) that is guaranteed to work with the API.",
"main": "chrome-script.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run snyk-protect",
"snyk-protect": "snyk-protect"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@serverless-chrome/lambda": "^1.0.0-55",
"chrome-launcher": "^0.13.2",
"puppeteer": "^1.13.0",
"serverless-offline": "^3.31.3",
"serverless-plugin-chrome": "^1.0.0-55",
"superagent": "^4.0.0",
"@snyk/protect": "latest"
},
"snyk": true
}