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

@coffeekraken/scripts-stack

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@coffeekraken/scripts-stack - npm Package Compare versions

Comparing version 0.0.29 to 0.0.30

src/dumbContent.txt

10

package.json
{
"name": "@coffeekraken/scripts-stack",
"version": "0.0.29",
"version": "0.0.30",
"description": "Nice terminal interface to handle npm/yarn scripts execution as well as watch and run automatically the wanted ones",

@@ -10,2 +10,5 @@ "homepage": "https://coffeekraken.io",

},
"scripts": {
"test": "cat src/dumbContent.txt"
},
"keywords": [

@@ -32,3 +35,8 @@ "coffee",

"license": "MIT",
"_moduleAliases": {
"@coffeekraken/sugar/js": "../../util/sugar/dist/js",
"@coffeekraken/sugar/node": "../../util/sugar/src/node"
},
"devDependencies": {
"module-alias": "^2.2.2",
"standard": "^10.0.3"

@@ -35,0 +43,0 @@ },

4

src/index.js

@@ -34,5 +34,5 @@ const path = require("path");

process.env.SCRIPTS_STACK = true;
process.env.STDOUT_COLUMNS = process.stdout.columns;
process.env.STDOUT_COLUMNS = Math.round(process.stdout.columns / 4 * 3);
process.stdout.on('resize', function() {
process.env.STDOUT_COLUMNS = process.stdout.columns;
process.env.STDOUT_COLUMNS = Math.round(process.stdout.columns / 4 * 3);
});

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