Socket
Socket
Sign inDemoInstall

prebuild-install

Package Overview
Dependencies
55
Maintainers
3
Versions
47
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.1.2 to 2.2.0

package-lock.json

4

package.json
{
"name": "prebuild-install",
"version": "2.1.2",
"version": "2.2.0",
"description": "A command line tool for easily install prebuilds for multiple version of node/iojs on a specific platform",

@@ -34,3 +34,3 @@ "scripts": {

"tar-fs": "^1.13.0",
"tunnel-agent": "^0.4.3",
"tunnel-agent": "^0.6.0",
"xtend": "4.0.1"

@@ -37,0 +37,0 @@ },

@@ -55,3 +55,4 @@ var path = require('path')

function npmCache () {
return process.env.APPDATA ? path.join(process.env.APPDATA, 'npm-cache') : path.join(home(), '.npm')
var env = process.env
return env.npm_config_cache || (env.APPDATA ? path.join(env.APPDATA, 'npm-cache') : path.join(home(), '.npm'))
}

@@ -58,0 +59,0 @@

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc