Socket
Socket
Sign inDemoInstall

envinfo

Package Overview
Dependencies
Maintainers
1
Versions
89
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

envinfo - npm Package Compare versions

Comparing version 3.10.0 to 3.11.0

4

package.json
{
"name": "envinfo",
"version": "3.10.0",
"version": "3.11.0",
"description": "Info about your dev environment for debugging purposes",

@@ -24,3 +24,3 @@ "repository": "https://github.com/tabrindle/envinfo",

"dependencies": {
"copy-paste": "^1.3.0",
"clipboardy": "^1.2.2",
"glob": "^7.1.2",

@@ -27,0 +27,0 @@ "minimist": "^1.2.0",

@@ -8,6 +8,10 @@ # envinfo

`npm install -g envinfo`
`envinfo`
```sh
npm install -g envinfo
envinfo
```
```bash
# Outputs.
Environment:

@@ -14,0 +18,0 @@ OS: macOS High Sierra 10.13

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

var helpers = require('./helpers');
var copypasta = require('copy-paste');
var copypasta = require('clipboardy');

@@ -111,3 +111,3 @@ module.exports.helpers = helpers;

if (options.clipboard) {
copypasta.copy(log);
copypasta.writeSync(log);
}

@@ -114,0 +114,0 @@ }

@@ -24,3 +24,11 @@ var childProcess = require('child_process');

function requireJson(filePath) {
if (fs.existsSync(filePath)) return require(filePath);
var packageJson;
if (fs.existsSync(filePath)) {
try {
packageJson = require(filePath);
} catch (e) {
return false;
}
return packageJson;
}
return false;

@@ -27,0 +35,0 @@ }

Sorry, the diff of this file is not supported yet

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