mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
35 lines
848 B
JSON
35 lines
848 B
JSON
{
|
|
"name": "my-project-nonoptimized-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": false,
|
|
"minify": false,
|
|
"ignore": [],
|
|
"exclude": [
|
|
],
|
|
"includePaths": []
|
|
},
|
|
"excludePatterns": [
|
|
"aws_modules/[u].*",
|
|
"aws_modules/bundle/b.*"
|
|
]
|
|
},
|
|
"cloudFormation": {
|
|
"Description": "",
|
|
"Handler": "aws_modules/bundle/nonoptimized/handler.handler",
|
|
"MemorySize": 1024,
|
|
"Runtime": "nodejs",
|
|
"Timeout": 6
|
|
}
|
|
}
|
|
} |