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 12.1.0 to 13.0.0

2

bin/cmd.js

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

Certain paths (node_modules/, coverage/, vendor/, *.min.js, bundle.js, and
Certain paths (node_modules/, coverage/, vendor/, *.min.js, and
files/folders that begin with '.' like .git/) are automatically ignored.

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

@@ -0,1 +1,2 @@

/*! standard-engine. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
module.exports.cli = require('./bin/cmd')

@@ -10,3 +11,3 @@

var HOME_OR_TMP = os.homedir() || os.tmpdir()
var CACHE_HOME = require('xdg-basedir').cache || os.tmpdir()

@@ -42,4 +43,4 @@ var DEFAULT_PATTERNS = [

// Example cache location: .standard-v12-cache/
var cacheLocation = path.join(HOME_OR_TMP, `.${this.cmd}-v${majorVersion}-cache/`)
// Example cache location: ~/.cache/standard/v12/
var cacheLocation = path.join(CACHE_HOME, this.cmd, `v${majorVersion}/`)

@@ -46,0 +47,0 @@ this.eslintConfig = Object.assign({

{
"name": "standard-engine",
"version": "12.1.0",
"version": "13.0.0",
"description": "Wrap your standards in a tortilla and cover it in special sauce.",

@@ -32,3 +32,7 @@ "keywords": [

"license": "MIT",
"author": "Dan Flettre <flettre@gmail.com> (http://twitter.com/flettre/)",
"author": {
"name": "Feross Aboukhadijeh",
"email": "feross@feross.org",
"url": "https://feross.org"
},
"scripts": {

@@ -39,5 +43,6 @@ "test": "standard && tape test/clone.js test/api.js"

"deglob": "^4.0.1",
"get-stdin": "^7.0.0",
"get-stdin": "^8.0.0",
"minimist": "^1.2.5",
"pkg-conf": "^3.1.0"
"pkg-conf": "^3.1.0",
"xdg-basedir": "^4.0.0"
},

@@ -61,3 +66,17 @@ "devDependencies": {

"node": ">=8.10"
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
}

@@ -27,3 +27,4 @@ # standard-engine [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] [![javascript style guide][standard-image]][standard-url]

- [standard](https://standardjs.com) - JavaScript Standard Style.
- [semistandard](https://github.com/Flet/semistandard) - Its `standard` with semicolons sprinkled on top.
- [semistandard](https://github.com/standard/semistandard) - It's `standard` with semicolons sprinkled on top.
- [standardx](https://github.com/standard/standardx) - JavaScript Standard Style with custom tweaks
- [happiness](https://github.com/JedWatson/happiness) - JavaScript Happiness Style (semicolons and tabs)

@@ -133,3 +134,3 @@ - [doublestandard](https://github.com/flet/doublestandard) - Require TWO semicolons at the end of every line!

The paths `node_modules/**`, `*.min.js`, `bundle.js`, `coverage/**`, hidden files/folders
The paths `node_modules/**`, `*.min.js`, `coverage/**`, hidden files/folders
(beginning with `.`), and all patterns in a project's root `.gitignore` file are

@@ -157,3 +158,2 @@ automatically ignored.

'**/*.min.js',
'**/bundle.js',
'coverage/**',

@@ -160,0 +160,0 @@ 'node_modules/**',

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