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 4.0.3 to 4.0.4

38

CHANGELOG.md

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

## 4.0.4 - 2016-05-25
* Fix install warning due to `cross-spawn-async`
## 4.0.3 - 2016-05-25
* Add back node v0.10 support
## 4.0.2 - 2016-05-16
* Fix truncated output on Node v6
## 4.0.1 - 2016-04-28
* Do not use .eslintignore files
## 4.0.0 - 2016-04-24
* Remove `--rules` option
## 3.3.1 - 2016-02-23
* Update dependencies
## 3.3.0 - 2016-02-18
* Support passing `cwd` option in Linter constructor
## 3.2.4 - 2016-02-07
* Fix tests
## 3.2.3 - 2016-02-07
* Fix tests
## 3.2.2 - 2016-02-06
* Fix tests
## 3.2.1 - 2016-02-05
* Fix tests
## 3.2.0 - 2016-02-05
* Add `--plugin` option
* Add `--rules` option
* Add `--env` option
## 3.1.1 - 2016-02-03

@@ -7,0 +45,0 @@ * Replace deprecated `win-spawn` dev dependency with `cross-spawn-async`.

4

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

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

"babel-eslint": "^6.0.1",
"cross-spawn-async": "^2.1.8",
"cross-spawn": "^3.0.1",
"eslint": "^2.0.0-rc.0",

@@ -24,0 +24,0 @@ "eslint-config-standard": "^5.2.0",

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

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

@@ -123,3 +123,3 @@ var minimist = require('minimist')

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

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