Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@architect/parser

Package Overview
Dependencies
Maintainers
7
Versions
56
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@architect/parser - npm Package Compare versions

Comparing version 1.1.6 to 1.1.7

2

package.json
{
"name": "@architect/parser",
"version": "1.1.6",
"version": "1.1.7",
"description": "Architect Parser accepts plaintext, JSON, or YAML .arc manifests and returns a plain JavaScript Object",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -26,3 +26,5 @@ /**

['region', json[section].region],
['profile', json[section].profile]
['profile', json[section].profile],
['runtime', json[section].runtime],
['layers', json[section].layers]
]

@@ -118,2 +120,11 @@ }

result += `profile ${raw.aws.profile}\n`
if (raw.aws.runtime) {
result += `runtime ${raw.aws.runtime}\n`
}
if (raw.aws.layers) {
raw.aws.layers.forEach(layer=> {
result += `layer ${layer}\n`
})
}
result += '\n'

@@ -120,0 +131,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc