arr-diff • 2.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.
expand-range • 1.8.2Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. See the benchmarks. Used by micromatch.
INDIRECT
12
expand-tilde • 1.2.2Bash-like tilde expansion for node.js. Expands a leading tilde in a file path to the user home directory, or `~+` to the cwd.
INDIRECT
1
extend • 3.0.2Port of jQuery.extend for node.js and the browser
INDIRECT
0
extglob • 0.3.2Convert extended globs to regex-compatible strings. Add (almost) the expressive power of regular expressions to glob patterns.
INDIRECT
1
filename-regex • 2.0.1Regular expression for matching file names, with or without extension.
INDIRECT
0
fill-range • 2.2.4Fill in a range of numbers or letters, optionally passing an increment or multiplier to use.
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.js
INDIRECT
0
for-own • 0.1.5Iterate 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.
INDIRECT
1
fs-exists-sync • 0.1.0Drop-in replacement for `fs.existsSync` with zero dependencies. Other libs I found either have crucial differences from fs.existsSync, or unnecessary dependencies. See README.md for more info.
is-dotfile • 1.0.3Return true if a file path is (or has) a dotfile. Returns false if the path is a dot directory.
INDIRECT
0
is-equal-shallow • 0.1.3Does a shallow comparison of two objects, returning false if the keys or values differ.
INDIRECT
1
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?"
is-glob • 2.0.1Returns `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 bet
INDIRECT
1
is-number • 2.1.0Returns true if the value is a number. comprehensive tests.
INDIRECT
2
is-number • 4.0.0Returns true if the value is a number. comprehensive tests.
INDIRECT
0
is-posix-bracket • 0.1.1Returns true if the given string is a POSIX bracket expression (POSIX character class).
math-random • 1.0.4math-random is an drop-in replacement for Math.random that uses cryptographically secure random number generation, where available. It works in both browser and node environments.
INDIRECT
0
mem • 1.1.0Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input
INDIRECT
1
micromatch • 2.3.11Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.
mssql • 3.3.0Microsoft SQL Server client for Node.js.
DIRECT
21
normalize-path • 2.1.1Normalize file path slashes to be unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes unless disabled.
object.omit • 2.0.1Return a copy of an object excluding the given key, or array of keys. Also accepts an optional filter function as the last argument.
regex-cache • 0.4.4Memoize the results of a call to the RegExp constructor, avoiding repetitious runtime compilation of the same string and options, resulting in surprising performance improvements.
repeat-string • 1.6.1Repeat the given string n times. Fastest implementation for repeating a string.
INDIRECT
0
require-directory • 2.1.1Recursively iterates over specified directory, require()'ing each file, and returning a nested hash structure containing those modules.
INDIRECT
0
resolve-dir • 0.1.1Resolve a directory that is either local, global or in the user's home directory.
INDIRECT
10
resolve • 1.22.10resolve like require.resolve() on behalf of files asynchronously and synchronously
isexe • 2.0.0Minimal module to check if a file is executable.
INDIRECT
0
lru-cache • 4.1.5A cache object that deletes the least-recently-used items.
INDIRECT
2
pg-int8 • 1.0.164-bit big-endian signed integer-to-string conversion
INDIRECT
0
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.