licenses.dev

gulp-package-release v1.0.1

An opinionated approach to release

Published on

Licenses

Learn more about license information.

Package Licenses

unknown

Dependency Licenses

MIT368
PackageRelationDependenciesPublished
ansi-cyan • 0.1.1The color cyan, in ansi.INDIRECT1
ansi-escapes • 1.4.0ANSI escape codes for manipulating the terminalINDIRECT0
ansi-gray • 0.1.1The color gray, in ansi.INDIRECT1
ansi-red • 0.1.1The color red, in ansi.INDIRECT1
ansi-regex • 2.1.1Regular expression for matching ANSI escape codesINDIRECT0
ansi-styles • 2.2.1ANSI escape codes for styling strings in the terminalINDIRECT0
ansi-wrap • 0.1.0Create ansi colors by passing the open and close codes.INDIRECT0
any-shell-escape • 0.1.1Escape and stringify an array of arguments to be executed on the shellINDIRECT0
archy • 1.0.0render nested hierarchies `npm ls` style with unicode pipesINDIRECT0
arr-diff • 1.1.0Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.INDIRECT2
arr-diff • 4.0.0Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.INDIRECT0
arr-flatten • 1.1.0Recursively flatten an array or arrays.INDIRECT0
arr-union • 2.1.0Combines a list of arrays, returning a single array with unique values, using strict equality for comparisons.INDIRECT0
arr-union • 3.1.0Combines a list of arrays, returning a single array with unique values, using strict equality for comparisons.INDIRECT0
array-differ • 1.0.0Create an array with values that are present in the first input array but not additional onesINDIRECT0
array-each • 1.0.1Loop over each item in an array and call the given function on every element.INDIRECT0
array-find-index • 1.0.2ES2015 `Array#findIndex()` ponyfillINDIRECT0
array-slice • 0.2.3Array-slice method. Slices `array` from the `start` index up to, but not including, the `end` index.INDIRECT0
array-slice • 1.1.0Array-slice method. Slices `array` from the `start` index up to, but not including, the `end` index.INDIRECT0
array-uniq • 1.0.3Create an array without duplicatesINDIRECT0
array-unique • 0.3.2Remove duplicate values from an array. Fastest ES5 implementation.INDIRECT0
assign-symbols • 1.0.0Assign the enumerable es6 Symbol properties from an object (or objects) to the first object passed on the arguments. Can be used as a supplement to other extend, assign or merge methods as a polyfill for the Symbols part of the es6 Object.assign method.INDIRECT0
balanced-match • 1.0.2Match balanced character pairs, like "{" and "}"INDIRECT0
base • 0.11.2base is the foundation for creating modular, unit testable and highly pluggable node.js applications, starting with a handful of common methods, like `set`, `get`, `del` and `use`.INDIRECT44
beeper • 1.1.1Make your terminal beepINDIRECT0
brace-expansion • 1.1.11Brace expansion as known from sh/bashINDIRECT2
braces • 2.3.2Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.INDIRECT70
cache-base • 1.0.1Basic object cache with `get`, `set`, `del`, and `has` methods for node.js/javascript projects.INDIRECT28
camelcase-keys • 2.1.0Convert object keys to camelCaseINDIRECT2
camelcase • 2.1.1Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBarINDIRECT0
chalk • 1.1.3Terminal string styling done right. Much color.INDIRECT6
class-utils • 0.3.6Utils for working with JavaScript classes and prototype methods.INDIRECT13
cli-cursor • 1.0.2Toggle the CLI cursorINDIRECT3
clone-stats • 0.0.1Safely clone node's fs.Stats instances without losing their class methodsINDIRECT0
clone • 0.2.0deep cloning of objects and arraysINDIRECT0
clone • 1.0.4deep cloning of objects and arraysINDIRECT0
code-point-at • 1.1.0ES2015 `String#codePointAt()` ponyfillINDIRECT0
collection-visit • 1.0.0Visit a method over the items in an object, or map visit over the objects in an array.INDIRECT3
commander • 2.20.3the complete solution for node.js command-line programsINDIRECT0
component-emitter • 1.3.1Event emitterINDIRECT0
concat-map • 0.0.1concatenative mapdasheryINDIRECT0
copy-descriptor • 0.1.1Copy a descriptor from object A to object BINDIRECT0
core-util-is • 1.0.3The `util.is*` functions introduced in Node v0.12.INDIRECT0
currently-unhandled • 0.4.1Track the list of currently unhandled promise rejections.INDIRECT1
dateformat • 1.0.12A node.js package for Steven Levithan's excellent dateFormat() function.INDIRECT47
dateformat • 2.2.0A node.js package for Steven Levithan's excellent dateFormat() function.INDIRECT0
debug • 2.6.9small debugging utilityINDIRECT1
decamelize • 1.2.0Convert a camelized string into a lowercased one with a custom separator: unicornRainbow → unicorn_rainbowINDIRECT0
decode-uri-component • 0.2.2A better decodeURIComponentINDIRECT0
defaults • 1.0.4merge single level defaults over a config objectINDIRECT1
define-property • 0.2.5Define a non-enumerable property on an object.INDIRECT5
define-property • 1.0.0Define a non-enumerable property on an object.INDIRECT5
define-property • 2.0.2Define a non-enumerable property on an object. Uses Reflect.defineProperty when available, otherwise Object.defineProperty.INDIRECT6
detect-file • 1.0.0Detects if a file exists and returns the resolved filepath.INDIRECT0
end-of-stream • 0.1.5Call a callback when a readable/writable/duplex stream has completed or failed.INDIRECT2
error-ex • 1.3.2Easy error subclassing and stack customizationINDIRECT1
escape-string-regexp • 1.0.5Escape RegExp special charactersINDIRECT0
exit-hook • 1.1.1Run some code when the process exitsINDIRECT0
expand-brackets • 2.1.4Expand POSIX bracket expressions (character classes) in glob patterns.INDIRECT63
expand-tilde • 2.0.2Bash-like tilde expansion for node.js. Expands a leading tilde in a file path to the user home directory, or `~+` to the cwd.INDIRECT2
extend-shallow • 1.1.4Extend an object with the properties of additional objects. node.js/javascript util.INDIRECT1
extend-shallow • 2.0.1Extend an object with the properties of additional objects. node.js/javascript util.INDIRECT1
extend-shallow • 3.0.2Extend an object with the properties of additional objects. node.js/javascript util.INDIRECT4
extend • 3.0.2Port of jQuery.extend for node.js and the browserINDIRECT0
extglob • 2.0.4Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob patterns.INDIRECT66
fancy-log • 1.3.3Log things, prefixed with a timestamp.INDIRECT5
figures • 1.7.0Unicode symbols with Windows CMD fallbacksINDIRECT2
fill-range • 4.0.0Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`INDIRECT7
find-index • 0.1.1finds an item in an array matching a predicate function, and returns its indexINDIRECT0
find-up • 1.1.2Find a file by walking up parent directoriesINDIRECT3
findup-sync • 2.0.0Find the first file matching a given pattern in the current directory or the nearest ancestor directory.INDIRECT93
fined • 1.2.0Find a file given a declaration of locations.INDIRECT20
first-chunk-stream • 1.0.0Transform the first chunk in a streamINDIRECT0
flagged-respawn • 1.0.1A tool for respawning node binaries when special flags are present.INDIRECT0
for-in • 1.0.2Iterate over the own and inherited enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.jsINDIRECT0
for-own • 1.0.0Iterate over the own enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js.INDIRECT1
fragment-cache • 0.2.1A cache for managing namespaced sub-cachesINDIRECT1
function-bind • 1.1.2Implementation of Function.prototype.bindINDIRECT0
gaze • 0.5.2A globbing fs.watch wrapper built from the best parts of other fine watch libs.INDIRECT8
get-stdin • 4.0.1Easier stdinINDIRECT0
get-value • 2.0.6Use property paths (`a.b.c`) to get a nested value from an object.INDIRECT0
glob-stream • 3.1.18File system globs as a streamINDIRECT19
glob-watcher • 0.0.6Watch globsINDIRECT9
global-modules • 1.0.0The directory used by npm for globally installed npm modules.INDIRECT9
global-prefix • 1.0.2Get the npm global path prefix.INDIRECT7
globule • 0.1.0An easy-to-use wildcard globbing library.INDIRECT7
glogg • 1.0.2Global logging utilityINDIRECT1
gulp-bump • 1.0.0Bump npm versions with Gulp (gulpjs.com)DIRECT85
gulp-git • 1.15.1Git plugin for gulp (gulpjs.com)DIRECT63
gulp-util • 3.0.8Utility functions for gulp pluginsDIRECT58
gulp • 3.9.1The streaming build systemDIRECT222
gulplog • 1.0.0Logger for gulp and gulp pluginsINDIRECT2
has-ansi • 2.0.0Check if a string has ANSI escape codesINDIRECT1
has-gulplog • 0.1.0Check if gulplog is available before attempting to use itINDIRECT1
has-value • 0.3.1Returns true if a value exists, false if empty. Works with deeply nested values using object paths.INDIRECT4
has-value • 1.0.0Returns true if a value exists, false if empty. Works with deeply nested values using object paths.INDIRECT7
has-values • 0.1.4Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. INDIRECT0
has-values • 1.0.0Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. INDIRECT4
hasown • 2.0.2A robust, ES3 compatible, "has own property" predicate.INDIRECT1
homedir-polyfill • 1.0.3Node.js os.homedir polyfill for older versions of node.js.INDIRECT1
indent-string • 2.1.0Indent each line in a stringINDIRECT2
inquirer • 0.11.4A collection of common interactive command line user interfaces.DIRECT27
interpret • 1.4.0A dictionary of file extensions and associated module loaders.INDIRECT0
is-absolute • 1.0.0Returns true if a file path is absolute. Does not rely on the path module and can be used as a polyfill for node.js native `path.isAbolute`.INDIRECT4
is-accessor-descriptor • 1.0.1Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.INDIRECT2
is-arrayish • 0.2.1Determines if an object can be used as an arrayINDIRECT0
is-buffer • 1.1.6Determine if an object is a BufferINDIRECT0
is-core-module • 2.16.1Is this specifier a node.js core module?INDIRECT2
is-data-descriptor • 1.0.1Returns true if a value has the characteristics of a valid JavaScript data descriptor.INDIRECT2
is-descriptor • 0.1.7Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.INDIRECT4
is-descriptor • 1.0.3Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.INDIRECT4
is-extendable • 0.1.1Returns true if a value is any of the object types: array, regexp, plain object, function or date. This is useful for determining if a value can be extended, e.g. "can the value have keys?"INDIRECT0
is-extendable • 1.0.1Returns true if a value is a plain object, array or function.INDIRECT2
is-extglob • 2.1.1Returns true if a string has an extglob.INDIRECT0
is-finite • 1.1.0ES2015 Number.isFinite() ponyfillINDIRECT0
is-fullwidth-code-point • 1.0.0Check if the character represented by a given Unicode code point is fullwidthINDIRECT1
is-glob • 3.1.0Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a betINDIRECT1
is-number • 3.0.0Returns true if the value is a number. comprehensive tests.INDIRECT2
is-plain-object • 2.0.4Returns true if an object was created by the `Object` constructor.INDIRECT1
is-relative • 1.0.0Returns `true` if the path appears to be relative.INDIRECT2
is-unc-path • 1.0.0Returns true if a filepath is a windows UNC file path.INDIRECT1
is-utf8 • 0.2.1Detect if a buffer is utf8 encoded.INDIRECT0
is-windows • 1.0.2Returns true if the platform is windows. UMD module, works with node.js, commonjs, browser, AMD, electron, etc.INDIRECT0
isarray • 0.0.1Array#isArray for older browsersINDIRECT0
isarray • 1.0.0Array#isArray for older browsersINDIRECT0
isobject • 2.1.0Returns true if the value is an object and not an array or null.INDIRECT1
isobject • 3.0.1Returns true if the value is an object and not an array or null.INDIRECT0
kind-of • 1.1.0Get the native type of a value.INDIRECT0
kind-of • 3.2.2Get the native type of a value.INDIRECT1
kind-of • 4.0.0Get the native type of a value.INDIRECT1
kind-of • 6.0.3Get the native type of a value.INDIRECT0
liftoff • 2.5.0Launch your command line tool with ease.INDIRECT115
load-json-file • 1.1.0Read and parse a JSON fileINDIRECT9
lodash._basecopy • 3.0.1The modern build of lodash’s internal `baseCopy` as a module.INDIRECT0
lodash._basetostring • 3.0.1The modern build of lodash’s internal `baseToString` as a module.INDIRECT0
lodash._basevalues • 3.0.0The modern build of lodash’s internal `baseValues` as a module.INDIRECT0
lodash._getnative • 3.9.1The modern build of lodash’s internal `getNative` as a module.INDIRECT0
lodash._isiterateecall • 3.0.9The modern build of lodash’s internal `isIterateeCall` as a module.INDIRECT0
lodash._reescape • 3.0.0The modern build of lodash’s internal `reEscape` as a module.INDIRECT0
lodash._reevaluate • 3.0.0The modern build of lodash’s internal `reEvaluate` as a module.INDIRECT0
lodash._reinterpolate • 3.0.0The modern build of lodash’s internal `reInterpolate` as a module.INDIRECT0
lodash._root • 3.0.1The internal lodash function `root` exported as a module.INDIRECT0
lodash.escape • 3.2.0The lodash method `_.escape` exported as a module.INDIRECT1
lodash.isarguments • 3.1.0The lodash method `_.isArguments` exported as a module.INDIRECT0
lodash.isarray • 3.0.4The modern build of lodash’s `_.isArray` as a module.INDIRECT0
lodash.keys • 3.1.2The modern build of lodash’s `_.keys` as a module.INDIRECT3
lodash.restparam • 3.6.1The modern build of lodash’s `_.restParam` as a module.INDIRECT0
lodash.template • 3.6.2The modern build of lodash’s `_.template` as a module.INDIRECT13
lodash.templatesettings • 3.1.1The lodash method `_.templateSettings` exported as a module.INDIRECT3
lodash • 1.0.2A utility library delivering consistency, customization, performance, and extras.INDIRECT0
lodash • 3.10.1The modern build of lodash modular utilities.INDIRECT0
loud-rejection • 1.6.0Make unhandled promise rejections fail loudly instead of the default silent failINDIRECT3
make-iterator • 1.0.1Convert an argument into a valid iterator. Based on the `.makeIterator()` implementation in mout https://github.com/mout/mout.INDIRECT1
map-cache • 0.2.2Basic cache object for storing key-value pairs.INDIRECT0
map-obj • 1.0.1Map object keys and values into a new objectINDIRECT0
map-visit • 1.0.0Map `visit` over an array of objects.INDIRECT2
meow • 3.7.0CLI app helperINDIRECT46
micromatch • 3.1.10Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.INDIRECT80
minimatch • 0.2.14a glob matcher in javascriptINDIRECT2
minimist • 1.2.8parse argument optionsINDIRECT0
mixin-deep • 1.3.2Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.INDIRECT4
mkdirp • 0.5.6Recursively mkdir, like `mkdir -p`INDIRECT1
ms • 2.0.0Tiny milisecond conversion utilityINDIRECT0
multipipe • 0.1.2pipe streams with centralized error handlingINDIRECT6
nanomatch • 1.2.13Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but complete Bash 4.3 wildcard support only (no support for exglobs, posix brackets or braces)INDIRECT68
npm>2.15.12>ansi-regex • 2.0.0Regular expression for matching ANSI escape codesINDIRECT0
npm>2.15.12>ansi • 0.3.1Advanced ANSI formatting tool for Node.jsINDIRECT0
npm>2.15.12>ansicolors • 0.3.2Functions that surround a string with ansicolor codes so it prints in color.INDIRECT0
npm>2.15.12>ansistyles • 0.1.3Functions that surround a string with ansistyle codes so it prints in style.INDIRECT0
npm>2.15.12>archy • 1.0.0render nested hierarchies `npm ls` style with unicode pipesINDIRECT0
npm>2.15.12>columnify • 1.5.4Render data in text columns. Supports in-column text-wrap.INDIRECT5
npm>2.15.12>columnify>wcwidth • 1.0.0Port of C's wcwidth() and wcswidth()INDIRECT2
npm>2.15.12>columnify>wcwidth>defaults • 1.0.3merge single level defaults over a config objectINDIRECT1
npm>2.15.12>columnify>wcwidth>defaults>clone • 1.0.2deep cloning of objects and arraysINDIRECT0
npm>2.15.12>dezalgo>asap • 2.0.3High-priority task queue for Node.js and browsersINDIRECT0
npm>2.15.12>editor • 1.0.0launch $EDITOR in your programINDIRECT0
npm>2.15.12>fs-write-stream-atomic>iferr • 0.1.5Higher-order functions for easier error handlingINDIRECT0
npm>2.15.12>github-url-from-git • 1.4.0Parse a github git url and return the github repo urlINDIRECT0
npm>2.15.12>glob>path-is-absolute • 1.0.0Node.js 0.12 path.isAbsolute() ponyfillINDIRECT0
npm>2.15.12>imurmurhash • 0.1.4An incremental implementation of MurmurHash3INDIRECT0
npm>2.15.12>init-package-json>glob>path-is-absolute • 1.0.0Node.js 0.12 path.isAbsolute() ponyfillINDIRECT0
npm>2.15.12>minimatch>brace-expansion • 1.1.6Brace expansion as known from sh/bashINDIRECT2
npm>2.15.12>minimatch>brace-expansion>balanced-match • 0.4.2Match balanced character pairs, like "{" and "}"INDIRECT0
npm>2.15.12>minimatch>brace-expansion>concat-map • 0.0.1concatenative mapdasheryINDIRECT0
npm>2.15.12>mkdirp • 0.5.1Recursively mkdir, like `mkdir -p`INDIRECT1
npm>2.15.12>mkdirp>minimist • 0.0.8parse argument optionsINDIRECT0
npm>2.15.12>node-gyp • 3.6.0Node.js native addon build toolINDIRECT111
npm>2.15.12>normalize-package-data>is-builtin-module • 1.0.0Check if a string matches the name of a Node.js builtin moduleINDIRECT1
npm>2.15.12>normalize-package-data>is-builtin-module>builtin-modules • 1.1.0List of the Node.js builtin modulesINDIRECT0
npm>2.15.12>npm-registry-client>concat-stream • 1.5.2writable stream that concatenates strings or binary data and calls a callback with the resultINDIRECT8
npm>2.15.12>npm-registry-client>concat-stream>readable-stream • 2.0.6Streams3, a user-land copy of the stream library from Node.jsINDIRECT6
npm>2.15.12>npm-registry-client>concat-stream>readable-stream>core-util-is • 1.0.2The `util.is*` functions introduced in Node v0.12.INDIRECT0
npm>2.15.12>npm-registry-client>concat-stream>readable-stream>isarray • 1.0.0Array#isArray for older browsersINDIRECT0
npm>2.15.12>npm-registry-client>concat-stream>readable-stream>process-nextick-args • 1.0.7process.nextTick but always with argsINDIRECT0
npm>2.15.12>npm-registry-client>concat-stream>readable-stream>string_decoder • 0.10.31The string_decoder module from Node coreINDIRECT0
npm>2.15.12>npm-registry-client>concat-stream>readable-stream>util-deprecate • 1.0.2The Node.js `util.deprecate()` function with browser supportINDIRECT0
npm>2.15.12>npm-registry-client>concat-stream>typedarray • 0.0.6TypedArray polyfill for old browsersINDIRECT0
npm>2.15.12>npm-registry-client>retry • 0.10.0Abstraction for exponential and custom retry strategies for failed operations.INDIRECT0
npm>2.15.12>npmlog>are-we-there-yet>delegates • 1.0.0delegate methods and accessors to another propertyINDIRECT0
npm>2.15.12>npmlog>gauge>lodash._baseslice • 4.0.0The internal lodash function `baseSlice` exported as a module.INDIRECT0
npm>2.15.12>npmlog>gauge>lodash._basetostring • 4.12.0The internal lodash function `baseToString` exported as a module.INDIRECT0
npm>2.15.12>npmlog>gauge>lodash.pad • 4.4.0The lodash method `_.pad` exported as a module.INDIRECT3
npm>2.15.12>npmlog>gauge>lodash.padend • 4.5.0The lodash method `_.padEnd` exported as a module.INDIRECT3
npm>2.15.12>npmlog>gauge>lodash.padstart • 4.5.0The lodash method `_.padStart` exported as a module.INDIRECT3
npm>2.15.12>npmlog>gauge>lodash.tostring • 4.1.4The lodash method `_.toString` exported as a module.INDIRECT0
npm>2.15.12>osenv>os-homedir • 1.0.0io.js 2.3.0 os.homedir() ponyfillINDIRECT0
npm>2.15.12>osenv>os-tmpdir • 1.0.1Node.js os.tmpdir() ponyfillINDIRECT0
npm>2.15.12>read-installed>debuglog • 1.0.1backport of util.debuglog from node v0.11INDIRECT0
npm>2.15.12>read-installed>util-extend • 1.0.1Node's internal object extension functionINDIRECT0
npm>2.15.12>read-package-json>glob>path-is-absolute • 1.0.0Node.js 0.12 path.isAbsolute() ponyfillINDIRECT0
npm>2.15.12>read-package-json>json-parse-helpfulerror • 1.0.3A drop-in replacement for JSON.parse that uses `jju` to give helpful errorsINDIRECT1
npm>2.15.12>readable-stream • 2.1.5Streams3, a user-land copy of the stream library from Node.jsINDIRECT7
npm>2.15.12>readable-stream>buffer-shims • 1.0.0some shims for node buffersINDIRECT0
npm>2.15.12>readable-stream>core-util-is • 1.0.2The `util.is*` functions introduced in Node v0.12.INDIRECT0
npm>2.15.12>readable-stream>isarray • 1.0.0Array#isArray for older browsersINDIRECT0
npm>2.15.12>readable-stream>process-nextick-args • 1.0.7process.nextTick but always with argsINDIRECT0
npm>2.15.12>readable-stream>string_decoder • 0.10.31The string_decoder module from Node coreINDIRECT0
npm>2.15.12>readable-stream>util-deprecate • 1.0.2The Node.js `util.deprecate()` function with browser supportINDIRECT0
npm>2.15.12>request>aws4 • 1.4.1Signs and prepares requests using AWS Signature Version 4INDIRECT0
npm>2.15.12>request>bl • 1.1.2Buffer List: collect buffers and access with a standard readable Buffer interface, streamable too!INDIRECT7
npm>2.15.12>request>bl>readable-stream • 2.0.6Streams3, a user-land copy of the stream library from Node.jsINDIRECT6
npm>2.15.12>request>bl>readable-stream>core-util-is • 1.0.2The `util.is*` functions introduced in Node v0.12.INDIRECT0
npm>2.15.12>request>bl>readable-stream>isarray • 1.0.0Array#isArray for older browsersINDIRECT0
npm>2.15.12>request>bl>readable-stream>process-nextick-args • 1.0.7process.nextTick but always with argsINDIRECT0
npm>2.15.12>request>bl>readable-stream>string_decoder • 0.10.31The string_decoder module from Node coreINDIRECT0
npm>2.15.12>request>bl>readable-stream>util-deprecate • 1.0.2The Node.js `util.deprecate()` function with browser supportINDIRECT0
npm>2.15.12>request>combined-stream • 1.0.5A stream that emits multiple other streams one after another.INDIRECT1
npm>2.15.12>request>combined-stream>delayed-stream • 1.0.0Buffers events from a stream until you are ready to handle them.INDIRECT0
npm>2.15.12>request>extend • 3.0.0Port of jQuery.extend for node.js and the browserINDIRECT0
npm>2.15.12>request>form-data • 1.0.0-rc4A library to create readable "multipart/form-data" streams. Can be used to submit forms and file uploads to other web applications.INDIRECT5
npm>2.15.12>request>form-data>async • 1.5.2Higher-order functions and common patterns for asynchronous codeINDIRECT0
npm>2.15.12>request>har-validator>chalk • 1.1.3Terminal string styling done right. Much color.INDIRECT6
npm>2.15.12>request>har-validator>chalk>ansi-styles • 2.2.1ANSI escape codes for styling strings in the terminalINDIRECT0
npm>2.15.12>request>har-validator>chalk>escape-string-regexp • 1.0.5Escape RegExp special charactersINDIRECT0
npm>2.15.12>request>har-validator>chalk>has-ansi • 2.0.0Check if a string has ANSI escape codesINDIRECT1
npm>2.15.12>request>har-validator>chalk>supports-color • 2.0.0Detect whether a terminal supports colorINDIRECT0
npm>2.15.12>request>har-validator>commander • 2.9.0the complete solution for node.js command-line programsINDIRECT1
npm>2.15.12>request>har-validator>commander>graceful-readlink • 1.0.1graceful fs.readlinkINDIRECT0
npm>2.15.12>request>har-validator>is-my-json-valid • 2.13.1A JSONSchema validator that uses code generation to be extremely fastINDIRECT5
npm>2.15.12>request>har-validator>is-my-json-valid>generate-function • 2.0.0Module that helps you write generated functions in NodeINDIRECT0
npm>2.15.12>request>har-validator>is-my-json-valid>generate-object-property • 1.2.0Generate safe JS code that can used to reference a object propertyINDIRECT1
npm>2.15.12>request>har-validator>is-my-json-valid>generate-object-property>is-property • 1.0.2Tests if a JSON property can be accessed using . syntaxINDIRECT0
npm>2.15.12>request>har-validator>is-my-json-valid>jsonpointer • 2.0.0Simple JSON Addressing.INDIRECT0
npm>2.15.12>request>har-validator>is-my-json-valid>xtend • 4.0.1extend like a bossINDIRECT0
npm>2.15.12>request>har-validator>pinkie-promise • 2.0.1ES2015 Promise ponyfillINDIRECT1
npm>2.15.12>request>har-validator>pinkie-promise>pinkie • 2.0.4Itty bitty little widdle twinkie pinkie ES2015 Promise implementationINDIRECT0
npm>2.15.12>request>http-signature • 1.1.1Reference implementation of Joyent's HTTP Signature scheme.INDIRECT14
npm>2.15.12>request>http-signature>assert-plus • 0.2.0Extra assertions on top of node's assert moduleINDIRECT0
npm>2.15.12>request>http-signature>jsprim • 1.3.0utilities for primitive JavaScript typesINDIRECT3
npm>2.15.12>request>http-signature>sshpk • 1.9.2A library for finding and using SSH public keysINDIRECT8
npm>2.15.12>request>http-signature>sshpk>asn1 • 0.2.3Contains parsers and serializers for ASN.1 (currently BER only)INDIRECT0
npm>2.15.12>request>http-signature>sshpk>assert-plus • 1.0.0Extra assertions on top of node's assert moduleINDIRECT0
npm>2.15.12>request>http-signature>sshpk>dashdash • 1.14.0A light, featureful and explicit option parsing library.INDIRECT1
npm>2.15.12>request>http-signature>sshpk>ecc-jsbn • 0.1.1ECC JS code based on JSBNINDIRECT1
npm>2.15.12>request>http-signature>sshpk>getpass • 0.1.6getpass for node.jsINDIRECT1
npm>2.15.12>request>http-signature>sshpk>jodid25519 • 1.0.2jodid25519 - Curve 25519-based cryptographyINDIRECT1
npm>2.15.12>request>is-typedarray • 1.0.0Detect whether or not an object is a Typed ArrayINDIRECT0
npm>2.15.12>request>isstream • 0.1.2Determine if an object is a StreamINDIRECT0
npm>2.15.12>request>mime-types • 2.1.11The ultimate javascript content-type utility.INDIRECT1
npm>2.15.12>request>mime-types>mime-db • 1.23.0Media Type DatabaseINDIRECT0
npm>2.15.12>request>stringstream • 0.0.5Encode and decode streams into string streamsINDIRECT0
npm>2.15.12>retry • 0.10.0Abstraction for exponential and custom retry strategies for failed operations.INDIRECT0
npm>2.15.12>sha>readable-stream • 2.0.2Streams3, a user-land copy of the stream library from iojs v2.xINDIRECT6
npm>2.15.12>sha>readable-stream>core-util-is • 1.0.1The `util.is*` functions introduced in Node v0.12.INDIRECT0
npm>2.15.12>sha>readable-stream>isarray • 0.0.1Array#isArray for older browsersINDIRECT0
npm>2.15.12>sha>readable-stream>process-nextick-args • 1.0.3process.nextTick but always with argsINDIRECT0
npm>2.15.12>sha>readable-stream>string_decoder • 0.10.31The string_decoder module from Node coreINDIRECT0
npm>2.15.12>sha>readable-stream>util-deprecate • 1.0.1The Node.js `util.deprecate()` function with browser supportINDIRECT0
npm>2.15.12>strip-ansi • 3.0.1Strip ANSI escape codesINDIRECT1
npm>2.15.12>text-table • 0.2.0borderless text tables with alignmentINDIRECT0
npm>2.15.12>umask • 1.1.0convert umask from string <-> numberINDIRECT0
npm>2.15.12>validate-npm-package-name>builtins • 0.0.7List of node.js builtin modulesINDIRECT0
number-is-nan • 1.0.1ES2015 Number.isNaN() ponyfillINDIRECT0
object-assign • 3.0.0ES6 Object.assign() ponyfillINDIRECT0
object-assign • 4.1.1ES2015 `Object.assign()` ponyfillINDIRECT0
object-copy • 0.1.0Copy static properties, prototype properties, and descriptors from one object to another.INDIRECT9
object-visit • 1.0.1Call a specified method on each value in the given object.INDIRECT1
object.defaults • 1.1.0Like `extend` but only copies missing properties/values to the target object.INDIRECT5
object.map • 1.0.1Similar to map for arrays, this creates a new object by calling the callback on each property of the original object.INDIRECT4
object.pick • 1.3.0Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore.INDIRECT1
onetime • 1.1.0Only call a function onceINDIRECT0
orchestrator • 0.3.8A module for sequencing and executing tasks and dependencies in maximum concurrencyINDIRECT5
ordered-read-streams • 0.1.0Combines array of streams into one read stream in strict orderINDIRECT0
os-homedir • 1.0.2Node.js 4 `os.homedir()` ponyfillINDIRECT0
parse-filepath • 1.0.2Pollyfill for node.js `path.parse`, parses a filepath into an object.INDIRECT8
parse-json • 2.2.0Parse JSON with more helpful errorsINDIRECT2
parse-node-version • 1.0.1Turn node's process.version into something useful.INDIRECT0
parse-passwd • 1.0.0Parse a passwd file into a list of users.INDIRECT0
pascalcase • 0.1.1Convert a string to pascal-case.INDIRECT0
path-exists • 2.1.0Check if a path existsINDIRECT2
path-is-absolute • 1.0.1Node.js 0.12 path.isAbsolute() ponyfillINDIRECT0
path-parse • 1.0.7Node.js path.parse() ponyfillINDIRECT0
path-root-regex • 0.1.2Regular expression for getting the root of a posix or windows filepath.INDIRECT0
path-root • 0.1.1Get the root of a posix or windows filepath.INDIRECT1
path-type • 1.1.0Check if a path is a file, directory, or symlinkINDIRECT4
pify • 2.3.0Promisify a callback-style functionINDIRECT0
pinkie-promise • 2.0.1ES2015 Promise ponyfillINDIRECT1
pinkie • 2.0.4Itty bitty little widdle twinkie pinkie ES2015 Promise implementationINDIRECT0
plugin-error • 0.1.2Error handling for vinyl plugins. Just an abstraction of what's in gulp-util with minor changes.INDIRECT9
posix-character-classes • 0.1.1POSIX character classes for creating regular expressions.INDIRECT0
pretty-hrtime • 1.0.3process.hrtime() to wordsINDIRECT0
process-nextick-args • 2.0.1process.nextTick but always with argsINDIRECT0
q • 1.5.1A library for promises (CommonJS/Promises/A,B,D)DIRECT0
read-pkg-up • 1.0.1Read the closest package.json fileINDIRECT28
read-pkg • 1.1.0Read a package.json fileINDIRECT25
readable-stream • 1.0.34Streams2, a user-land copy of the stream library from Node.js v0.10.xINDIRECT4
readable-stream • 1.1.14Streams3, a user-land copy of the stream library from Node.js v0.11.xINDIRECT4
readable-stream • 2.3.8Streams3, a user-land copy of the stream library from Node.jsINDIRECT7
readline2 • 1.0.1Readline Façade fixing bugs and issues found in releases 0.8 and 0.10INDIRECT4
rechoir • 0.6.2Require any supported file as a node module.INDIRECT6
redent • 1.0.0Strip redundant indentation and indent the stringINDIRECT5
regex-not • 1.0.2Create a javascript regular expression for matching everything except for the given string.INDIRECT7
repeat-element • 1.1.4Create an array by repeating the given value n times.INDIRECT0
repeat-string • 1.6.1Repeat the given string n times. Fastest implementation for repeating a string.INDIRECT0
repeating • 2.0.1Repeat a string - fastINDIRECT1
replace-ext • 0.0.1Replaces a file extension with another oneINDIRECT0
require-dir • 0.1.0Helper to require() directories.DIRECT0
resolve-dir • 1.0.1Resolve a directory that is either local, global or in the user's home directory.INDIRECT9
resolve-url • 0.2.1Like Node.js’ `path.resolve`/`url.resolve` for the browser.INDIRECT0
resolve • 1.22.10resolve like require.resolve() on behalf of files asynchronously and synchronouslyINDIRECT5
restore-cursor • 1.0.1Gracefully restore the CLI cursor on exitINDIRECT2
ret • 0.1.15Tokenizes a string that represents a regular expression.INDIRECT0
run-async • 0.1.0Utility method to run function either synchronously or asynchronously using the common `this.async()` style.INDIRECT2
safe-buffer • 5.1.2Safer Node.js Buffer APIINDIRECT0
safe-regex • 1.1.0detect possibly catastrophic, exponential-time regular expressionsINDIRECT1
set-value • 2.0.1Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.INDIRECT8
snapdragon-node • 2.1.1Snapdragon utility for creating a new AST node in custom code, such as plugins.INDIRECT10
snapdragon-util • 3.0.1Utilities for the snapdragon parser/compiler.INDIRECT2
snapdragon • 0.8.2Fast, pluggable and easy-to-use parser-renderer factory.INDIRECT56
source-map-resolve • 0.5.3Resolve the source map and/or sources for a generated file.INDIRECT5
source-map-url • 0.4.1Tools for working with sourceMappingURL comments.INDIRECT0
sparkles • 1.0.1Namespaced global event emitterINDIRECT0
spdx-expression-parse • 3.0.1parse SPDX license expressionsINDIRECT2
split-string • 3.1.0Split a string on a character except when the character is escaped.INDIRECT5
static-extend • 0.1.2Adds a static `extend` method to a class, to simplify inheritance. Extends the static properties, prototype properties, and descriptors from a `Parent` constructor onto `Child` constructors.INDIRECT10
stream-consume • 0.1.1Consume a stream to ensure it keeps flowingINDIRECT0
string_decoder • 0.10.31The string_decoder module from Node coreINDIRECT0
string_decoder • 1.1.1The string_decoder module from Node coreINDIRECT1
string-width • 1.0.2Get the visual width of a string - the number of columns required to display itINDIRECT5
strip-ansi • 3.0.1Strip ANSI escape codesINDIRECT1
strip-bom • 1.0.0Strip UTF-8 byte order mark (BOM) from a string/buffer/streamINDIRECT2
strip-bom • 2.0.0Strip UTF-8 byte order mark (BOM) from a string/bufferINDIRECT1
strip-indent • 1.0.1Strip leading whitespace from every line in a stringINDIRECT1
supports-color • 2.0.0Detect whether a terminal supports colorINDIRECT0
supports-preserve-symlinks-flag • 1.0.0Determine if the current node version supports the `--preserve-symlinks` flag.INDIRECT0
through • 2.3.8simplified stream constructionINDIRECT0
through2 • 0.5.1A tiny wrapper around Node streams2 Transform to avoid explicit subclassing noiseINDIRECT6
through2 • 0.6.5A tiny wrapper around Node streams2 Transform to avoid explicit subclassing noiseINDIRECT6
through2 • 2.0.5A tiny wrapper around Node streams2 Transform to avoid explicit subclassing noiseINDIRECT9
tildify • 1.2.0Convert an absolute path to a tilde path: `/Users/sindresorhus/dev` → `~/dev`INDIRECT1
time-stamp • 1.1.0Get a formatted timestamp.INDIRECT0
to-object-path • 0.3.0Create an object path from a list or array of strings.INDIRECT2
to-regex-range • 2.1.1Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.INDIRECT4
to-regex • 3.0.2Generate a regex from a string or array of strings.INDIRECT14
trim-newlines • 1.0.0Trim newlines from the start and/or end of a stringINDIRECT0
unc-path-regex • 0.1.2Regular expression for testing if a file path is a windows UNC file path. Can also be used as a component of another regexp via the `.source` property.INDIRECT0
union-value • 1.0.1Set an array of unique values as the property of an object. Supports setting deeply nested properties using using object-paths/dot notation.INDIRECT11
unset-value • 1.0.0Delete nested properties from an object using dot notation.INDIRECT6
urix • 0.1.0Makes Windows-style paths more unix and URI friendly.INDIRECT0
use • 3.1.1Easily add plugin support to your node.js application.INDIRECT0
user-home • 1.1.1Get the path to the user home directoryINDIRECT0
util-deprecate • 1.0.2The Node.js `util.deprecate()` function with browser supportINDIRECT0
v8flags • 2.1.1Get available v8 flags.INDIRECT1
vinyl-fs • 0.3.14Vinyl adapter for the file systemINDIRECT42
vinyl • 0.4.6A virtual file formatINDIRECT2
vinyl • 0.5.3A virtual file formatINDIRECT3
xtend • 3.0.0extend like a bossINDIRECT0
xtend • 4.0.2extend like a bossINDIRECT0
ISC84
PackageRelationDependenciesPublished
cli-width • 1.1.1Get stdout window width, with two fallbacks, tty and then a default.INDIRECT0
color-support • 1.1.3A module which will endeavor to guess your terminal's level of color support.INDIRECT0
fs.realpath • 1.0.0Use node's fs.realpath, but fall back to the JS implementation if the native one failsINDIRECT0
glob • 4.5.3a little globberINDIRECT8
glob • 7.2.3a little globberINDIRECT10
graceful-fs • 3.0.12A drop-in replacement for fs, making various improvements.INDIRECT1
graceful-fs • 4.2.11A drop-in replacement for fs, making various improvements.INDIRECT0
hosted-git-info • 2.8.9Provides metadata and conversions from repository urls for Github, Bitbucket and GitlabINDIRECT0
inflight • 1.0.6Add callbacks to requests in flight to avoid async duplicationINDIRECT2
inherits • 1.0.2A tiny simple way to do classic inheritance in jsINDIRECT0
inherits • 2.0.4Browser-friendly inheritance fully compatible with standard node.js inherits()INDIRECT0
ini • 1.3.8An ini encoder/decoder for nodeINDIRECT0
isexe • 2.0.0Minimal module to check if a file is executable.INDIRECT0
lru-cache • 2.7.3A cache object that deletes the least-recently-used items.INDIRECT0
minimatch • 2.0.10a glob matcher in javascriptINDIRECT3
minimatch • 3.1.2a glob matcher in javascriptINDIRECT3
mute-stream • 0.0.5Bytes go in, but they don't come out (when muted).INDIRECT0
natives • 1.1.6Do stuff with Node.js's native JavaScript modulesINDIRECT0
npm>2.15.12>abbrev • 1.0.9Like ruby's abbrev module, but in jsINDIRECT0
npm>2.15.12>async-some • 1.0.2short-circuited, asynchronous version of Array.protototype.someINDIRECT3
npm>2.15.12>block-stream • 0.0.9a stream of blocksINDIRECT1
npm>2.15.12>char-spinner • 1.0.1Put a little spinner on process.stderr, as unobtrusively as possible.INDIRECT0
npm>2.15.12>chmodr • 1.0.2like `chmod -R`INDIRECT0
npm>2.15.12>chownr • 1.0.1like `chown -R`INDIRECT0
npm>2.15.12>config-chain>proto-list • 1.2.4A utility for managing a prototype chainINDIRECT0
npm>2.15.12>dezalgo • 1.0.3Contain async insanity so that the dark pony lord doesn't eat soulsINDIRECT2
npm>2.15.12>fs-vacuum • 1.2.9recursively remove empty directories -- to a pointINDIRECT14
npm>2.15.12>fs-write-stream-atomic • 1.0.8Like `fs.createWriteStream(...)`, but atomic.INDIRECT11
npm>2.15.12>fstream-npm • 1.1.1fstream class for creating npm packagesINDIRECT17
npm>2.15.12>fstream-npm>fstream-ignore • 1.0.5A thing for ignoring files based on globsINDIRECT16
npm>2.15.12>fstream • 1.0.10Advanced file system stream thingsINDIRECT15
npm>2.15.12>glob • 7.0.6a little globberINDIRECT10
npm>2.15.12>glob>fs.realpath • 1.0.0Use node's fs.realpath, but fall back to the JS implementation if the native one failsINDIRECT0
npm>2.15.12>graceful-fs • 4.1.6A drop-in replacement for fs, making various improvements.INDIRECT0
npm>2.15.12>hosted-git-info • 2.1.5Provides metadata and conversions from repository urls for Github, Bitbucket and GitlabINDIRECT0
npm>2.15.12>inflight • 1.0.5Add callbacks to requests in flight to avoid async duplicationINDIRECT2
npm>2.15.12>inherits • 2.0.3Browser-friendly inheritance fully compatible with standard node.js inherits()INDIRECT0
npm>2.15.12>ini • 1.3.4An ini encoder/decoder for nodeINDIRECT0
npm>2.15.12>init-package-json • 1.9.4A node module to get your node module startedINDIRECT32
npm>2.15.12>init-package-json>glob • 6.0.4a little globberINDIRECT9
npm>2.15.12>init-package-json>promzard • 0.3.0prompting wizardlyINDIRECT2
npm>2.15.12>lockfile • 1.0.1A very polite lock file utility, which endeavors to not litter, and to wait patiently for others.INDIRECT0
npm>2.15.12>lru-cache • 4.0.1A cache object that deletes the least-recently-used items.INDIRECT2
npm>2.15.12>lru-cache>pseudomap • 1.0.2A thing that is a lot like ES6 `Map`, but without iterators, for use in environments where `for..of` syntax and `Map` are not available.INDIRECT0
npm>2.15.12>lru-cache>yallist • 2.0.0Yet Another Linked ListINDIRECT0
npm>2.15.12>minimatch • 3.0.3a glob matcher in javascriptINDIRECT3
npm>2.15.12>node-gyp>semver • 5.3.0The semantic version parser used by npm.INDIRECT0
npm>2.15.12>nopt • 3.0.6Option parsing for Node, supporting types, shorthands, etc. Used by npm.INDIRECT1
npm>2.15.12>normalize-git-url • 3.0.2Normalizes Git URLs. For npm, but you can use it too.INDIRECT0
npm>2.15.12>npm-cache-filename • 1.0.2Given a cache folder and url, return the appropriate cache folder.INDIRECT0
npm>2.15.12>npm-package-arg • 4.1.0Parse the things that can be arguments to `npm install`INDIRECT2
npm>2.15.12>npm-registry-client • 7.2.1Client for the npm registryINDIRECT110
npm>2.15.12>npmlog • 2.0.4logger for npmINDIRECT19
npm>2.15.12>npmlog>are-we-there-yet • 1.1.2Keep track of the overall completion of many dispirate processesINDIRECT9
npm>2.15.12>npmlog>gauge • 1.2.7A terminal based horizontal guageINDIRECT8
npm>2.15.12>npmlog>gauge>has-unicode • 2.0.0Try to guess if your terminal supports unicodeINDIRECT0
npm>2.15.12>once • 1.4.0Run a function exactly one timeINDIRECT1
npm>2.15.12>osenv • 0.1.3Look up environment settings specific to different operating systemsINDIRECT2
npm>2.15.12>read-installed • 4.0.3Read all the installed packages in a folder, and return a tree structure with all the data.INDIRECT30
npm>2.15.12>read-installed>readdir-scoped-modules • 1.0.2Like `fs.readdir` but handling `@org/module` dirs as if they were a single entry.INDIRECT6
npm>2.15.12>read-package-json • 2.0.4The thing npm uses to read package.json files with semantics and defaults and validationINDIRECT23
npm>2.15.12>read-package-json>glob • 6.0.4a little globberINDIRECT9
npm>2.15.12>read • 1.0.7read(1) for node programsINDIRECT1
npm>2.15.12>read>mute-stream • 0.0.5Bytes go in, but they don't come out (when muted).INDIRECT0
npm>2.15.12>realize-package-specifier • 3.0.1Like npm-package-arg, but more so, producing full file paths and differentiating local tar and directory sources.INDIRECT6
npm>2.15.12>request>har-validator • 2.0.6Extremely fast HTTP Archive (HAR) validator using JSON SchemaINDIRECT17
npm>2.15.12>request>json-stringify-safe • 5.0.1Like JSON.stringify, but doesn't blow up on circular refs.INDIRECT0
npm>2.15.12>rimraf • 2.5.4A deep deletion module for node (like `rm -rf`)INDIRECT11
npm>2.15.12>semver • 5.1.0The semantic version parser used by npm.INDIRECT0
npm>2.15.12>slide • 1.1.6A flow control lib small enough to fit on in a slide presentation. Derived live at Oak.JSINDIRECT0
npm>2.15.12>tar • 2.2.1tar for nodeINDIRECT17
npm>2.15.12>uid-number • 0.0.6Convert a username/group name to a uid/gid numberINDIRECT0
npm>2.15.12>validate-npm-package-name • 2.2.2Give me a string and I'll tell you if it's a valid npm package nameINDIRECT1
npm>2.15.12>which • 1.2.11Like which(1) unix command. Find the first instance of an executable in the PATH.INDIRECT1
npm>2.15.12>which>isexe • 1.1.2Minimal module to check if a file is executable.INDIRECT0
npm>2.15.12>wrappy • 1.0.2Callback wrapping utilityINDIRECT0
npm>2.15.12>write-file-atomic • 1.1.4Write files in an atomic fashion w/configurable ownershipINDIRECT3
once • 1.3.3Run a function exactly one timeINDIRECT1
semver • 4.3.6The semantic version parser used by npm.INDIRECT0
semver • 5.7.2The semantic version parser used by npm.DIRECT0
sigmund • 1.0.1Quick and dirty signatures for Objects.INDIRECT0
signal-exit • 3.0.7when you want to fire an event no matter how a process exits.INDIRECT0
which • 1.3.1Like which(1) unix command. Find the first instance of an executable in the PATH.INDIRECT1
wrappy • 1.0.2Callback wrapping utilityINDIRECT0
unknown12
PackageRelationDependenciesPublished
deprecated • 0.0.1Tool for deprecating thingsINDIRECT0
dot-object • 1.9.0dot-object makes it possible to transform and read (JSON) objects using dot notation.INDIRECT12
glob2base • 0.0.12Extracts a base path from a node-glob instanceINDIRECT1
npm>2.15.12>config-chain • 1.1.10HANDLE CONFIGURATION ONCE AND FOR ALLINDIRECT2
npm>2.15.12>request>hawk>sntp • 1.0.9SNTP ClientINDIRECT1
npm>2.15.12>request>http-signature>jsprim>extsprintf • 1.0.2extended POSIX-style sprintfINDIRECT0
npm>2.15.12>request>http-signature>jsprim>json-schema • 0.2.2JSON Schema validation and specificationsINDIRECT0
npm>2.15.12>request>http-signature>jsprim>verror • 1.3.6richer JavaScript errorsINDIRECT1
npm>2.15.12>request>node-uuid • 1.4.7Rigorous implementation of RFC4122 (v1 and v4) UUIDs.INDIRECT0
plugin-log • 0.1.0Legacy logging for gulp plugins - gulp-util.logINDIRECT55
rx-lite • 3.1.2Lightweight library for composing asynchronous and event-based operations in JavaScriptINDIRECT0
sequencify • 0.0.7A module for sequencing tasks and dependenciesINDIRECT0
Apache-2.010
PackageRelationDependenciesPublished
npm>2.15.12>request • 2.74.0Simplified HTTP request client.INDIRECT66
npm>2.15.12>request>aws-sign2 • 0.6.0AWS signing. Originally pulled from LearnBoost/knox, maintained as vendor in request, now a standalone module.INDIRECT0
npm>2.15.12>request>caseless • 0.11.0Caseless object set/get/has, very useful when working with HTTP headers.INDIRECT0
npm>2.15.12>request>forever-agent • 0.6.1HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module.INDIRECT0
npm>2.15.12>request>oauth-sign • 0.8.2OAuth 1 signing. Formerly a vendor lib in mikeal/request, now a standalone module.INDIRECT0
npm>2.15.12>request>tunnel-agent • 0.4.3HTTP proxy tunneling agent. Formerly part of mikeal/request, now a standalone module.INDIRECT0
npm>2.15.12>validate-npm-package-license • 3.0.1Give me a string and I'll tell you if it's a valid npm package license stringINDIRECT4
npm>2.15.12>validate-npm-package-license>spdx-correct • 1.0.2correct invalid SPDX identifiersINDIRECT1
spdx-correct • 3.2.0correct invalid SPDX expressionsINDIRECT3
validate-npm-package-license • 3.0.4Give me a string and I'll tell you if it's a valid npm package license stringINDIRECT4
BSD-3-Clause7
PackageRelationDependenciesPublished
npm>2.15.12>request>hawk • 3.1.3HTTP Hawk Authentication SchemeINDIRECT4
npm>2.15.12>request>hawk>boom • 2.10.1HTTP-friendly error objectsINDIRECT1
npm>2.15.12>request>hawk>cryptiles • 2.0.5General purpose crypto utilitiesINDIRECT2
npm>2.15.12>request>hawk>hoek • 2.16.3General purpose node utilitiesINDIRECT0
npm>2.15.12>request>qs • 6.2.1A querystring parser that supports nesting and arrays, with a depth limitINDIRECT0
npm>2.15.12>request>tough-cookie • 2.3.1RFC6265 Cookies and Cookie Jar for node.jsINDIRECT0
source-map • 0.5.7Generates and consumes source mapsINDIRECT0
BSD-2-Clause6
PackageRelationDependenciesPublished
normalize-package-data • 2.5.0Normalizes data that can be found in package.json files.INDIRECT13
npm>2.15.12>cmd-shim • 2.0.2Used in npm for command line application supportINDIRECT3
npm>2.15.12>github-url-from-username-repo • 1.0.2Create urls from username/repoINDIRECT0
npm>2.15.12>normalize-package-data • 2.3.5Normalizes data that can be found in package.json files.INDIRECT9
npm>2.15.12>npm-install-checks • 1.0.7checks that npm runs during the installation of a moduleINDIRECT21
npm>2.15.12>npm-user-validate • 0.1.5User validations for npmINDIRECT0
non-standard6
PackageRelationDependenciesPublished
duplexer2 • 0.0.2Like duplexer (http://npm.im/duplexer) but using streams2INDIRECT5
glob • 3.1.21a little globberINDIRECT5
graceful-fs • 1.2.3A drop-in replacement for fs, making various improvements.INDIRECT0
npm>2.15.12>request>http-signature>sshpk>jsbn • 0.1.0The jsbn library is a fast, portable implementation of large-number math in pure JavaScript, enabling public-key crypto and other applications on desktop and mobile browsers.INDIRECT0
npm>2.15.12>request>http-signature>sshpk>tweetnacl • 0.13.3Port of TweetNaCl cryptographic library to JavaScriptINDIRECT0
unique-stream • 1.0.0node.js through stream that emits a unique stream of objects based on criteriaINDIRECT0
WTFPL4
PackageRelationDependenciesPublished
npm>2.15.12>opener • 1.4.1Opens stuff, like webpages and files and executables, cross-platformINDIRECT0
npm>2.15.12>path-is-inside • 1.0.1Tests whether one path is inside another pathINDIRECT0
npm>2.15.12>read-package-json>json-parse-helpfulerror>jju • 1.3.0a set of utilities to work with JSON / JSON5 documentsINDIRECT0
npm>2.15.12>sorted-object • 2.0.0Returns a copy of an object with its keys sortedINDIRECT0
CC-BY-3.02
PackageRelationDependenciesPublished
npm>2.15.12>validate-npm-package-license>spdx-expression-parse>spdx-exceptions • 1.0.4list of SPDX standard license exceptionsINDIRECT0
spdx-exceptions • 2.5.0list of SPDX standard license exceptionsINDIRECT0
Artistic-2.01
PackageRelationDependenciesPublished
npm • 2.15.12a package manager for JavaScriptDIRECT201
BSD-2-Clause OR MIT1
PackageRelationDependenciesPublished
npm>2.15.12>sha • 2.0.1Check and get file hashesINDIRECT8
Unlicense1
PackageRelationDependenciesPublished
npm>2.15.12>spdx-license-ids • 1.2.2A list of SPDX license identifiersINDIRECT0
CC-BY-3.0 AND MIT1
PackageRelationDependenciesPublished
npm>2.15.12>validate-npm-package-license>spdx-expression-parse • 1.0.2parse SPDX license expressionsINDIRECT2
Apache-2.0 OR MIT1
PackageRelationDependenciesPublished
atob • 2.1.2atob for Node.JS and Linux / Mac / Windows CLI (it's a one-liner)INDIRECT0
CC0-1.01
PackageRelationDependenciesPublished
spdx-license-ids • 3.0.21A list of SPDX license identifiersINDIRECT0
Last updated on

Copy the licenses badge code for the latest version:

[![licenses](https://licenses.dev/b/npm/gulp-package-release)](https://licenses.dev/npm/gulp-package-release)
<a href="https://licenses.dev/npm/gulp-package-release">
  <img src="https://licenses.dev/b/npm/gulp-package-release" alt="licenses" />
</a>

Or the licenses badge code for the 1.0.1 version:

[![licenses](https://licenses.dev/b/npm/gulp-package-release/1.0.1)](https://licenses.dev/npm/gulp-package-release/1.0.1)
<a href="https://licenses.dev/npm/gulp-package-release/1.0.1">
  <img src="https://licenses.dev/b/npm/gulp-package-release/1.0.1" alt="licenses" />
</a>
GitHub