Socket
Socket
Sign inDemoInstall

libnpmexec

Package Overview
Dependencies
Maintainers
6
Versions
75
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

libnpmexec - npm Package Compare versions

Comparing version 1.1.1 to 1.2.0

CHANGELOG.md

3

lib/index.js

@@ -19,2 +19,3 @@ const { delimiter, dirname, resolve } = require('path')

const runScript = require('./run-script.js')
const isWindows = require('./is-windows.js')

@@ -38,3 +39,3 @@ /* istanbul ignore next */

runPath = '.',
scriptShell = undefined,
scriptShell = isWindows ? process.env.ComSpec || 'cmd' : 'sh',
yes = undefined,

@@ -41,0 +42,0 @@ ...flatOptions

{
"name": "libnpmexec",
"version": "1.1.1",
"version": "1.2.0",
"files": [

@@ -5,0 +5,0 @@ "lib"

@@ -42,3 +42,3 @@ # libnpmexec

- `runPath`: Location to where to execute the script **String**, defaults to `.`
- `scriptShell`: Default shell to be used **String**
- `scriptShell`: Default shell to be used **String**, defaults to `sh` on POSIX systems, `process.env.ComSpec` OR `cmd` on Windows
- `yes`: Should skip download confirmation prompt when fetching missing packages from the registry? **Boolean**

@@ -45,0 +45,0 @@ - `registry`, `cache`, and more options that are forwarded to [@npmcli/arborist](https://github.com/npm/arborist/) and [pacote](https://github.com/npm/pacote/#options) **Object**

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