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

ask-json

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ask-json - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

2

dist/cli.js

@@ -14,3 +14,3 @@ #!/usr/bin/env node

var name = "ask-json";
var version = "0.0.5";
var version = "0.0.6";

@@ -17,0 +17,0 @@ var ensureFile = (filePath) => {

{
"name": "ask-json",
"description": "Easy interactive prompts to create and validate data using JSON schema",
"version": "0.0.5",
"version": "0.0.6",
"author": "Jon McClure <jon.r.mcclure@gmail.com>",

@@ -6,0 +6,0 @@ "homepage": "https://github.com/reuters-graphics/ask-json",

@@ -107,7 +107,8 @@ ![](badge.svg)

"type": "array",
"items": [{
"type": "number"
}, {
"type": "string"
}]
"items": {
"oneOf": [
{ "type": "number"},
{ "type": "string"}
]
}
}

@@ -153,4 +154,4 @@ ```

message: (variablePath, invalidMessage = null) => {
if(!invalidMessage) return 'What\'s your email?'
return `What\'s your email? (${invalidMessage})`
if(!invalidMessage) return 'What\'s your email?';
return `What\'s your email? (${invalidMessage})`;
}

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