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

grunt-lodash

Package Overview
Dependencies
Maintainers
3
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-lodash - npm Package Compare versions

Comparing version 0.4.0 to 0.5.0

LICENSE

23

package.json
{
"name": "grunt-lodash",
"version": "0.4.0",
"version": "0.5.0",
"description": "A Grunt wrapper around lodash-cli.",

@@ -18,3 +18,5 @@ "homepage": "https://github.com/lodash/grunt-lodash",

"repository": "lodash/grunt-lodash",
"scripts": { "test": "grunt travis --verbose" },
"scripts": {
"test": "grunt travis --verbose"
},
"engines": {

@@ -24,13 +26,13 @@ "node": ">=0.8.19"

"dependencies": {
"lodash": "3.0.0"
"lodash": "^3.0.0"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-cli": "~0.1.13",
"grunt-contrib-clean": "~0.4.1",
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-nodeunit": "~0.2.0",
"grunt-contrib-watch": "~0.4.4",
"grunt": "~0.4.0",
"grunt-cli": "~0.1.0",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-jshint": "~0.11.0",
"grunt-contrib-nodeunit": "~0.4.0",
"grunt-contrib-watch": "~0.6.0",
"lodash-cli": ">=1.3.1",
"semver": "~2.1.0"
"semver": "~5.0.3"
},

@@ -41,5 +43,4 @@ "peerDependencies": {

"files": [
"LICENSE.txt",
"tasks/lodash.js"
]
}

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

# grunt-lodash v0.4.0
# grunt-lodash v0.5.0

@@ -68,2 +68,3 @@ A Grunt wrapper around the [lodash](https://lodash.com/) command-line interface, [lodash-cli](https://npmjs.org/package/lodash-cli).

// modern, strict, compat
// also accepts an array to allow combination with 'strict'
'modifier': 'modern',

@@ -70,0 +71,0 @@ 'modularize': true,

@@ -16,2 +16,4 @@ module.exports = function(grunt) {

var push = Array.prototype.push;
/*--------------------------------------------------------------------------*/

@@ -49,3 +51,3 @@

if (options.modifier) {
spawnArgs.push(options.modifier);
push.apply(spawnArgs, [].concat(options.modifier));
}

@@ -52,0 +54,0 @@ spawnArgs = spawnArgs.concat(args, flags, shortFlags, '--output', this.files[0].dest);

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