New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@botmock-api/export-cli

Package Overview
Dependencies
Maintainers
3
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@botmock-api/export-cli - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

8

index.js

@@ -1,2 +0,2 @@

#! /usr/bin/env node
#!/usr/bin/env node
const prompts = require('prompts');

@@ -23,3 +23,3 @@ const chalk = require('chalk');

name: 'nodeVersion',
message: `What's the node.js version it requires?`,
message: `What's the minimum node.js version it requires?`,
validate: str =>

@@ -56,8 +56,8 @@ isNaN(parseInt(str)) ? `${str} must be a number` : true

process.chdir(NEW_PROJECT_DIRECTORY);
await promisify(exec)('npm install');
console.log(
chalk.dim(
`installing dependencies in ${chalk.bold(NEW_PROJECT_DIRECTORY)}`
`installing dependencies in ${chalk.bold(NEW_PROJECT_DIRECTORY)}...`
)
);
await promisify(exec)('npm install');
process.chdir('../');

@@ -64,0 +64,0 @@ console.log(chalk.dim(`created ${chalk.bold(NEW_PROJECT_DIRECTORY)}`));

{
"name": "@botmock-api/export-cli",
"version": "1.0.2",
"version": "1.0.3",
"description": "Scaffold Botmock export scripts",

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

@@ -5,4 +5,12 @@ # Export-CLI

Install by running
```console
npm i -g @botmock-api/export-cli
```
And then run the following (one level up from where you would like to create your project)
```console
export-cli
```
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