Skip to content

Instantly share code, notes, and snippets.

@SmithKevin
Created December 7, 2018 22:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SmithKevin/840f5318e815e8a508b02ef70107bb4f to your computer and use it in GitHub Desktop.
Save SmithKevin/840f5318e815e8a508b02ef70107bb4f to your computer and use it in GitHub Desktop.
Package.json for Puppeteer lambda
{
"name": "tagfinder",
"version": "3.0.0",
"description": "Finds QC tags on sites from an SQS queue",
"main": "app.js",
"scripts": {
"test": "./node_modules/.bin/mocha",
"start": "node app.js",
"pack": "npm-pack-zip",
"preversion": "npm test",
"postversion": "npm run pack"
},
"author": "Kevin Smith",
"devDependencies": {
"aws-sdk": "^2.370.0",
"mocha": "^5.2.0",
"npm-pack-zip": "^1.2.7"
},
"dependencies": {
"chrome-aws-lambda": "~1.11.1",
"puppeteer-core": "~1.11.0"
},
"bundledDependencies": [
"chrome-aws-lambda",
"puppeteer-core"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment