mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
33 lines
801 B
JSON
33 lines
801 B
JSON
{
|
|
"name": "my-project-browserify-tests",
|
|
"version": "1.0",
|
|
"location": "https://github.com/jaws-stack/skinny-jeans",
|
|
"author": "John Serverless <john@gmail.com> http://www.google.com",
|
|
"description": "A lambda function that does something",
|
|
"lambda": {
|
|
"envVars": [
|
|
"MYAPP_SERVICE_KEY",
|
|
"MYAPP_SERVICE2_KEY"
|
|
],
|
|
"deploy": false,
|
|
"package": {
|
|
"optimize": {
|
|
"builder": "browserify",
|
|
"minify": true,
|
|
"ignore": [],
|
|
"exclude": [
|
|
"aws-sdk"
|
|
],
|
|
"includePaths": []
|
|
},
|
|
"excludePatterns": []
|
|
},
|
|
"cloudFormation": {
|
|
"Description": "",
|
|
"Handler": "aws_modules/bundle/browserify/handler.handler",
|
|
"MemorySize": 1024,
|
|
"Runtime": "nodejs",
|
|
"Timeout": 6
|
|
}
|
|
}
|
|
} |