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

yeoman-generator

Package Overview
Dependencies
Maintainers
5
Versions
168
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yeoman-generator - npm Package Compare versions

Comparing version 0.17.0-pre.4 to 0.17.0

2

gulpfile.js

@@ -38,3 +38,3 @@ 'use strict';

.pipe(istanbul())
.on('end', function () {
.on('finish', function () {
gulp.src(['test/*.js'])

@@ -41,0 +41,0 @@ .pipe(mocha({

@@ -138,5 +138,5 @@ 'use strict';

/**
* Receives a list of `paths`, and an Hash of `options` to install through bower.
* Receives a list of `components`, and a Hash of `options` to install through bower.
*
* @param {String|Array} paths Packages to install
* @param {String|Array} cmpnt Components to install
* @param {Object} options Options to invoke `bower install` with, see `bower help install`

@@ -146,10 +146,10 @@ * @param {Function} cb

install.bowerInstall = function install(paths, options, cb) {
return this.runInstall('bower', paths, options, cb);
install.bowerInstall = function install(cmpnt, options, cb) {
return this.runInstall('bower', cmpnt, options, cb);
};
/**
* Receives a list of `paths`, and an Hash of `options` to install through npm.
* Receives a list of `packages`, and a Hash of `options` to install through npm.
*
* @param {String|Array} paths Packages to install
* @param {String|Array} pkgs Packages to install
* @param {Object} options Options to invoke `npm install` with, see `npm help install`

@@ -159,4 +159,4 @@ * @param {Function} cb

install.npmInstall = function install(paths, options, cb) {
return this.runInstall('npm', paths, options, cb);
install.npmInstall = function install(pkgs, options, cb) {
return this.runInstall('npm', pkgs, options, cb);
};
{
"name": "yeoman-generator",
"version": "0.17.0-pre.4",
"version": "0.17.0",
"description": "Rails-inspired generator system that provides scaffolding for your apps",

@@ -31,5 +31,5 @@ "license": "BSD",

"dependencies": {
"async": "^0.6.2",
"async": "^0.9.0",
"chalk": "^0.4.0",
"cheerio": "^0.14.0",
"cheerio": "^0.16.0",
"class-extend": "^0.1.0",

@@ -46,13 +46,13 @@ "dargs": "^0.1.0",

"iconv-lite": "^0.2.10",
"inquirer": "^0.4.0",
"inquirer": "^0.5.0",
"isbinaryfile": "^2.0.0",
"lodash": "^2.4.1",
"mime": "^1.2.9",
"mkdirp": "^0.3.5",
"mkdirp": "^0.5.0",
"nopt": "^2.2.1",
"request": "^2.34.0",
"rimraf": "^2.2.0",
"shelljs": "^0.2.6",
"shelljs": "^0.3.0",
"text-table": "^0.2.0",
"underscore.string": "^2.3.1",
"nopt": "~2.1.1"
"underscore.string": "^2.3.1"
},

@@ -62,11 +62,11 @@ "devDependencies": {

"gulp-coveralls": "^0.1.0",
"gulp-istanbul": "^0.1.0",
"gulp-jscs": "^0.4.1",
"gulp-istanbul": "^0.2.0",
"gulp-jscs": "^0.5.0",
"gulp-jshint": "^1.5.3",
"gulp-mocha": "^0.4.1",
"jshint-stylish": "^0.1.4",
"jshint-stylish": "^0.2.0",
"mockery": "^1.4.0",
"proxyquire": "^0.6.0",
"proxyquire": "^1.0.0",
"sinon": "^1.9.1"
}
}
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