Socket
Socket
Sign inDemoInstall

standard-engine

Package Overview
Dependencies
Maintainers
9
Versions
91
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

standard-engine - npm Package Compare versions

Comparing version 3.1.0 to 3.1.1

3

CHANGELOG.md

@@ -5,2 +5,5 @@ # standard-engine Change Log

## 3.1.1 - 2016-02-03
* Replace deprecated `win-spawn` dev dependency with `cross-spawn-async`.
## 3.1.0 - 2016-02-03

@@ -7,0 +10,0 @@ * Support `opts.format` string option to print message about how to install formatter.

6

package.json
{
"name": "standard-engine",
"description": "Wrap your standards in a tortilla and cover it in special sauce.",
"version": "3.1.0",
"version": "3.1.1",
"author": "Dan Flettre <flettre@gmail.com> (http://twitter.com/flettre/)",

@@ -21,2 +21,3 @@ "bugs": {

"babel-eslint": "^5.0.0-beta6",
"cross-spawn-async": "^2.1.8",
"eslint": "^1.10.3",

@@ -31,4 +32,3 @@ "eslint-config-standard": "^4.0.0",

"standard-packages": "^3.0.1",
"tape": "^4.0.0",
"win-spawn": "^2.0.0"
"tape": "^4.0.0"
},

@@ -35,0 +35,0 @@ "homepage": "https://github.com/flet/standard-engine",

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

var crossSpawnAsync = require('cross-spawn-async')
var fs = require('fs')

@@ -20,3 +21,2 @@ var minimist = require('minimist')

var test = require('tape')
var winSpawn = require('win-spawn')

@@ -124,3 +124,3 @@ var argv = minimist(process.argv.slice(2), {

var child = winSpawn(command, args, opts)
var child = crossSpawnAsync(command, args, opts)
child.on('error', cb)

@@ -127,0 +127,0 @@ child.on('close', function (code) {

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