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

alexa-lambda-skill

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

alexa-lambda-skill - npm Package Compare versions

Comparing version 3.0.1 to 3.0.2

2

package.json

@@ -9,3 +9,3 @@ {

"description": "Create Alexa Skills for AWS Lambda, easily.",
"version": "3.0.1",
"version": "3.0.2",
"main": "build/index.min.js",

@@ -12,0 +12,0 @@ "jsnext:main": "src/index.js",

@@ -26,3 +26,3 @@ # alexa-lambda-skill

echo({ sentence }) {
return say(sentence).card('Echo', sentence);
return say(sentence).card({ title: 'Echo', content: sentence });
}

@@ -44,3 +44,3 @@

return fetch(url).then(response => response.json()).then(({ name, author }) => {
return say(`${name} was created by ${author.name}`).card(name, `Credits: ${author.name} <${author.email}> (${author.url})`);
return say(`${name} was created by ${author.name}`).card({ title: name, content: `Credits: ${author.name} <${author.email}> (${author.url})`});
});

@@ -47,0 +47,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