Socket
Socket
Sign inDemoInstall

mocha

Package Overview
Dependencies
Maintainers
1
Versions
199
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mocha - npm Package Compare versions

Comparing version 5.0.5 to 5.1.0

lib/reporters/json.js.orig

6

lib/context.js
'use strict';
/**
* @module Context
*/
/**
* Expose `Context`.

@@ -21,3 +23,3 @@ */

* @param {Runnable} runnable
* @return {Context}
* @return {Context} context
*/

@@ -24,0 +26,0 @@ Context.prototype.runnable = function (runnable) {

'use strict';
/**
* @module Hook
*
*/
/**
* Module dependencies.

@@ -17,4 +20,8 @@ */

/**
* Initialize a new `Hook` with the given `title` and callback `fn`.
* Initialize a new `Hook` with the given `title` and callback `fn`. Derived from
* `Runnable`.
*
* @memberof Mocha
* @public
* @class
* @param {String} title

@@ -37,2 +44,4 @@ * @param {Function} fn

*
* @memberof Mocha.Hook
* @public
* @param {Error} err

@@ -39,0 +48,0 @@ * @return {Error}

@@ -8,4 +8,7 @@ 'use strict';

*/
/**
* @namespace Mocha
* @module Mocha
*/
/**
* Module dependencies.

@@ -38,7 +41,21 @@ */

/**
* @public
* @class utils
* @memberof Mocha
*/
exports.utils = utils;
exports.interfaces = require('./interfaces');
/**
*
* @memberof Mocha
* @public
*/
exports.reporters = reporters;
exports.Runnable = require('./runnable');
exports.Context = require('./context');
/**
*
* @memberof Mocha
*/
exports.Runner = require('./runner');

@@ -76,2 +93,4 @@ exports.Suite = require('./suite');

*
* @public
* @class Mocha
* @param {Object} options

@@ -112,2 +131,3 @@ * @api public

*
* @public
* @api public

@@ -127,2 +147,3 @@ * @param {boolean} [bail]

*
* @public
* @api public

@@ -139,2 +160,3 @@ * @param {string} file

*
* @public
* @param {String|Function} reporter name or constructor

@@ -190,3 +212,3 @@ * @param {Object} reporterOptions optional options

* Set test UI `name`, defaults to "bdd".
*
* @public
* @api public

@@ -270,2 +292,3 @@ * @param {string} bdd

*
* @public
* @api public

@@ -282,2 +305,3 @@ * @param str

*
* @public
* @param {RegExp|String} re

@@ -302,2 +326,3 @@ * @return {Mocha}

*
* @public
* @return {Mocha}

@@ -314,2 +339,3 @@ * @api public

*
* @public
* @param {Boolean} ignore

@@ -331,2 +357,3 @@ * @return {Mocha}

* @api public
* @public
*/

@@ -343,2 +370,3 @@ Mocha.prototype.checkLeaks = function () {

* @api public
* @public
*/

@@ -355,2 +383,3 @@ Mocha.prototype.fullTrace = function () {

* @api public
* @public
*/

@@ -368,2 +397,3 @@ Mocha.prototype.growl = function () {

* @api public
* @public
* @param {Array|string} globals

@@ -383,2 +413,3 @@ * @return {Mocha}

* @api public
* @public
* @param {boolean} colors

@@ -400,2 +431,3 @@ * @return {Mocha}

* @api public
* @public
* @param {boolean} inlineDiffs

@@ -415,2 +447,3 @@ * @return {Mocha}

* @api public
* @public
* @param {boolean} hideDiff

@@ -430,2 +463,3 @@ * @return {Mocha}

* @api public
* @public
* @param {number} timeout

@@ -445,2 +479,3 @@ * @return {Mocha}

* @api public
* @public
*/

@@ -458,2 +493,3 @@ Mocha.prototype.retries = function (n) {

* @api public
* @public
* @param {number} slow

@@ -473,2 +509,3 @@ * @return {Mocha}

* @api public
* @public
* @param {boolean} enabled

@@ -487,2 +524,3 @@ * @return {Mocha}

* @api public
* @public
*/

@@ -498,2 +536,3 @@ Mocha.prototype.asyncOnly = function () {

* @api public
* @public
*/

@@ -510,2 +549,3 @@ Mocha.prototype.noHighlighting = function () {

* @api public
* @public
*/

@@ -556,2 +596,3 @@ Mocha.prototype.allowUncaught = function () {

* @api public
* @public
* @param {Function} fn

@@ -558,0 +599,0 @@ * @return {Runner}

'use strict';
/**
* @module milliseconds
*/
/**
* Helpers.

@@ -16,2 +18,4 @@ */

*
* @memberof Mocha
* @public
* @api public

@@ -18,0 +22,0 @@ * @param {string|number} val

'use strict';
/**
* @module Base
*/
/**
* Module dependencies.

@@ -188,2 +190,5 @@ */

*
* @public
* @memberof Mocha.reporters.Base
* @variation 1
* @param {Array} failures

@@ -265,2 +270,5 @@ * @api public

*
* @memberof Mocha.reporters
* @public
* @class
* @param {Runner} runner

@@ -333,2 +341,4 @@ * @api public

*
* @memberof Mocha.reporters.Base
* @public
* @api public

@@ -335,0 +345,0 @@ */

'use strict';
/**
* @module Doc
*/
/**
* Module dependencies.

@@ -19,2 +21,6 @@ */

*
* @class
* @memberof Mocha.reporters
* @extends {Base}
* @public
* @param {Runner} runner

@@ -21,0 +27,0 @@ * @api public

'use strict';
/**
* @module Dot
*/
/**
* Module dependencies.

@@ -20,2 +22,6 @@ */

*
* @class
* @memberof Mocha.reporters
* @extends Mocha.reporters.Base
* @public
* @api public

@@ -22,0 +28,0 @@ * @param {Runner} runner

'use strict';
/* eslint-env browser */
/**
* @module HTML
*/
/**
* Module dependencies.

@@ -49,2 +51,6 @@ */

*
* @public
* @class
* @memberof Mocha.reporters
* @extends Mocha.reporters.Base
* @api public

@@ -51,0 +57,0 @@ * @param {Runner} runner

'use strict';
/**
* @module JSONStream
*/
/**
* Module dependencies.

@@ -16,4 +18,9 @@ */

/**
* Initialize a new `List` test reporter.
* Initialize a new `JSONStream` test reporter.
*
* @public
* @name JSONStream
* @class JSONStream
* @memberof Mocha.reporters
* @extends Mocha.reporters.Base
* @api public

@@ -20,0 +27,0 @@ * @param {Runner} runner

'use strict';
/**
* @module JSON
*/
/**
* Module dependencies.

@@ -18,2 +20,6 @@ */

*
* @public
* @class JSON
* @memberof Mocha.reporters
* @extends Mocha.reporters.Base
* @api public

@@ -71,2 +77,7 @@ * @param {Runner} runner

function clean (test) {
var err = test.err || {};
if (err instanceof Error) {
err = errorJSON(err);
}
return {

@@ -77,3 +88,3 @@ title: test.title,

currentRetry: test.currentRetry(),
err: errorJSON(test.err || {})
err: cleanCycles(err)
};

@@ -83,5 +94,27 @@ }

/**
* Transform `error` into a JSON object.
* Replaces any circular references inside `obj` with '[object Object]'
*
* @api private
* @param {Object} obj
* @return {Object}
*/
function cleanCycles (obj) {
var cache = [];
return JSON.parse(JSON.stringify(obj, function (key, value) {
if (typeof value === 'object' && value !== null) {
if (cache.indexOf(value) !== -1) {
// Instead of going in a circle, we'll print [object Object]
return '' + value;
}
cache.push(value);
}
return value;
}));
}
/**
* Transform an Error object into a JSON object.
*
* @api private
* @param {Error} err

@@ -88,0 +121,0 @@ * @return {Object}

'use strict';
/**
* @module Landing
*/
/**
* Module dependencies.

@@ -39,2 +41,6 @@ */

*
* @public
* @class
* @memberof Mocha.reporters
* @extends Mocha.reporters.Base
* @api public

@@ -41,0 +47,0 @@ * @param {Runner} runner

'use strict';
/**
* @module List
*/
/**
* Module dependencies.

@@ -21,2 +23,6 @@ */

*
* @public
* @class
* @memberof Mocha.reporters
* @extends Mocha.reporters.Base
* @api public

@@ -23,0 +29,0 @@ * @param {Runner} runner

'use strict';
/**
* @module Markdown
*/
/**
* Module dependencies.

@@ -25,2 +27,6 @@ */

*
* @public
* @class
* @memberof Mocha.reporters
* @extends Mocha.reporters.Base
* @api public

@@ -27,0 +33,0 @@ * @param {Runner} runner

'use strict';
/**
* @module Min
*/
/**
* Module dependencies.

@@ -19,2 +21,6 @@ */

*
* @public
* @class
* @memberof Mocha.reporters
* @extends Mocha.reporters.Base
* @api public

@@ -21,0 +27,0 @@ * @param {Runner} runner

'use strict';
/**
* @module Nyan
*/
/**
* Module dependencies.

@@ -21,2 +23,6 @@ */

* @api public
* @public
* @class Nyan
* @memberof Mocha.reporters
* @extends Mocha.reporters.Base
*/

@@ -23,0 +29,0 @@

'use strict';
/**
* @module Progress
*/
/**
* Module dependencies.

@@ -27,2 +29,6 @@ */

*
* @public
* @class
* @memberof Mocha.reporters
* @extends Mocha.reporters.Base
* @api public

@@ -29,0 +35,0 @@ * @param {Runner} runner

'use strict';
/**
* @module Spec
*/
/**
* Module dependencies.

@@ -20,2 +22,6 @@ */

*
* @public
* @class
* @memberof Mocha.reporters
* @extends Mocha.reporters.Base
* @api public

@@ -22,0 +28,0 @@ * @param {Runner} runner

'use strict';
/**
* @module TAP
*/
/**
* Module dependencies.

@@ -18,2 +20,6 @@ */

*
* @public
* @class
* @memberof Mocha.reporters
* @extends Mocha.reporters.Base
* @api public

@@ -20,0 +26,0 @@ * @param {Runner} runner

'use strict';
/**
* @module XUnit
*/
/**
* Module dependencies.

@@ -36,2 +38,6 @@ */

*
* @public
* @class
* @memberof Mocha.reporters
* @extends Mocha.reporters.Base
* @api public

@@ -38,0 +44,0 @@ * @param {Runner} runner

'use strict';
/**
* @module Runnable
*/
/**
* Module dependencies.
*/
var EventEmitter = require('events').EventEmitter;

@@ -38,9 +39,9 @@ var Pending = require('./pending');

/**
* Initialize a new `Runnable` with the given `title` and callback `fn`.
* Initialize a new `Runnable` with the given `title` and callback `fn`. Derived from [EventEmitter](https://nodejs.org/api/events.html#events_class_eventemitter)
*
* @memberof Mocha
* @public
* @class
* @param {String} title
* @param {Function} fn
* @api private
* @param {string} title
* @param {Function} fn
*/

@@ -131,2 +132,4 @@ function Runnable (title, fn) {

*
* @memberof Mocha.Runnable
* @public
* @api public

@@ -193,2 +196,4 @@ */

*
* @memberof Mocha.Runnable
* @public
* @api public

@@ -204,2 +209,4 @@ * @return {string}

*
* @memberof Mocha.Runnable
* @public
* @api public

@@ -259,4 +266,3 @@ * @return {string}

}
self.callback(new Error('Timeout of ' + ms +
'ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves.'));
self.callback(self._timeoutError(ms));
self.timedOut = true;

@@ -327,4 +333,3 @@ }, ms);

if (!err && self.duration > ms && self._enableTimeouts) {
err = new Error('Timeout of ' + ms +
'ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves.');
err = self._timeoutError(ms);
}

@@ -426,1 +431,16 @@ fn(err);

};
/**
* Instantiates a "timeout" error
*
* @param {number} ms - Timeout (in milliseconds)
* @returns {Error} a "timeout" error
* @private
*/
Runnable.prototype._timeoutError = function (ms) {
var msg = 'Timeout of ' + ms + 'ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves.';
if (this.file) {
msg += ' (' + this.file + ')';
}
return new Error(msg);
};
'use strict';
/**
* @module Runner
*/
/**
* Module dependencies.
*/
var EventEmitter = require('events').EventEmitter;

@@ -40,3 +42,3 @@ var Pending = require('./pending');

/**
* Initialize a `Runner` for the given `suite`.
* Initialize a `Runner` for the given `suite`. Derived from [EventEmitter](https://nodejs.org/api/events.html#events_class_eventemitter)
*

@@ -57,4 +59,7 @@ * Events:

*
* @memberof Mocha
* @public
* @class
* @api public
* @param {Suite} suite Root suite
* @param {Suite} [suite] Root suite
* @param {boolean} [delay] Whether or not to delay execution of root suite

@@ -100,6 +105,5 @@ * until ready.

*
* @param {RegExp} re
* @param {Boolean} invert
* @return {Runner} for chaining
* @api public
* @public
* @memberof Mocha.Runner
* @param {RegExp} re

@@ -121,5 +125,5 @@ * @param {boolean} invert

*
* @param {Suite} suite
* @return {Number}
* @memberof Mocha.Runner
* @api public
* @public
* @param {Suite} suite

@@ -168,5 +172,5 @@ * @return {number}

*
* @param {Array} arr
* @return {Runner} for chaining
* @api public
* @public
* @memberof Mocha.Runner
* @param {Array} arr

@@ -812,5 +816,5 @@ * @return {Runner} Runner instance.

*
* @param {Function} fn
* @return {Runner} for chaining
* @api public
* @public
* @memberof Mocha.Runner
* @param {Function} fn

@@ -872,2 +876,4 @@ * @return {Runner} Runner instance.

*
* @memberof Mocha.Runner
* @public
* @api public

@@ -874,0 +880,0 @@ * @return {Runner} Runner instance.

'use strict';
/**
* @module Suite
*/

@@ -6,3 +9,2 @@ /**

*/
var EventEmitter = require('events').EventEmitter;

@@ -26,2 +28,4 @@ var Hook = require('./hook');

*
* @memberof Mocha
* @public
* @api public

@@ -41,5 +45,7 @@ * @param {Suite} parent

/**
* Initialize a new `Suite` with the given `title` and `ctx`.
* Initialize a new `Suite` with the given `title` and `ctx`. Derived from [EventEmitter](https://nodejs.org/api/events.html#events_class_eventemitter)
*
* @api private
* @memberof Mocha
* @public
* @class
* @param {string} title

@@ -196,2 +202,21 @@ * @param {Context} parentContext

/**
* Generic hook-creator.
* @private
* @param {string} title - Title of hook
* @param {Function} fn - Hook callback
* @returns {Hook} A new hook
*/
Suite.prototype._createHook = function (title, fn) {
var hook = new Hook(title, fn);
hook.parent = this;
hook.timeout(this.timeout());
hook.retries(this.retries());
hook.enableTimeouts(this.enableTimeouts());
hook.slow(this.slow());
hook.ctx = this.ctx;
hook.file = this.file;
return hook;
};
/**
* Run `fn(test[, done])` before running tests.

@@ -214,9 +239,3 @@ *

var hook = new Hook(title, fn);
hook.parent = this;
hook.timeout(this.timeout());
hook.retries(this.retries());
hook.enableTimeouts(this.enableTimeouts());
hook.slow(this.slow());
hook.ctx = this.ctx;
var hook = this._createHook(title, fn);
this._beforeAll.push(hook);

@@ -245,9 +264,3 @@ this.emit('beforeAll', hook);

var hook = new Hook(title, fn);
hook.parent = this;
hook.timeout(this.timeout());
hook.retries(this.retries());
hook.enableTimeouts(this.enableTimeouts());
hook.slow(this.slow());
hook.ctx = this.ctx;
var hook = this._createHook(title, fn);
this._afterAll.push(hook);

@@ -276,9 +289,3 @@ this.emit('afterAll', hook);

var hook = new Hook(title, fn);
hook.parent = this;
hook.timeout(this.timeout());
hook.retries(this.retries());
hook.enableTimeouts(this.enableTimeouts());
hook.slow(this.slow());
hook.ctx = this.ctx;
var hook = this._createHook(title, fn);
this._beforeEach.push(hook);

@@ -307,9 +314,3 @@ this.emit('beforeEach', hook);

var hook = new Hook(title, fn);
hook.parent = this;
hook.timeout(this.timeout());
hook.retries(this.retries());
hook.enableTimeouts(this.enableTimeouts());
hook.slow(this.slow());
hook.ctx = this.ctx;
var hook = this._createHook(title, fn);
this._afterEach.push(hook);

@@ -362,2 +363,4 @@ this.emit('afterEach', hook);

*
* @memberof Mocha.Suite
* @public
* @api public

@@ -374,2 +377,4 @@ * @return {string}

*
* @memberof Mocha.Suite
* @public
* @api public

@@ -392,2 +397,4 @@ * @return {string}

*
* @memberof Mocha.Suite
* @public
* @api public

@@ -394,0 +401,0 @@ * @return {number}

'use strict';
/**
* @module
*/
/**
* Module dependencies.

@@ -464,2 +468,4 @@ */

*
* @memberof Mocha.utils
* @public
* @api public

@@ -466,0 +472,0 @@ * @param {string} filepath Base path to start searching from.

{
"name": "mocha",
"version": "5.0.5",
"version": "5.1.0",
"description": "simple, flexible, fun test framework",

@@ -14,278 +14,426 @@ "keywords": [

"contributors": [
"aaroncrows (https://github.com/aaroncrows)",
"Aaron Hamid <aaron@incsw.com> (https://github.com/ahamid)",
"Aaron Heckmann <aaron.heckmann+github@gmail.com> (https://github.com/aheckmann)",
"Adam Crabtree (CrabDude's alias) (https://github.com/CrabBot)",
"Adam Gruber (https://github.com/adamgruber)",
"Adrian Ludwig (https://github.com/adrian-ludwig)",
"Ainthe Kitchen <a.in.the.k@gmail.com> (https://github.com/ainthek)",
"ajaykodali (https://github.com/ajaykodali)",
"Alex Early (https://github.com/aearly)",
"Alex Pham <thedark1337@thedark1337.com> (https://github.com/thedark1337)",
"amsul (https://github.com/amsul)",
"Andreas Brekken <andreas@brekken.com> (https://github.com/abrkn)",
"Andreas Lind <andreas@one.com> (https://github.com/papandreou)",
"Andrew Krawchyk <akrawchyk@gmail.com> (https://github.com/akrawchyk)",
"Andrew Miller <vnikitin@live.com> (https://github.com/vnikiti)",
"Andrew Nesbitt <andrewnez@gmail.com> (https://github.com/andrew)",
"Andrey Popp <8mayday@gmail.com> (https://github.com/andreypopp)",
"Andrii Shumada <eagleeyes91@gmail.com> (https://github.com/eagleeye)",
"Anis Safine (https://github.com/anis)",
"Arian Stolwijk <stolwijk.arian@gmail.com> (https://github.com/arian)",
"Ariel Mashraki <ariel@mashraki.co.il> (https://github.com/a8m)",
"Arnaud Brousseau (https://github.com/ArnaudBrousseau)",
"Atsuya Takagi <atsuya.takagi@gmail.com> (https://github.com/atsuya)",
"Attila Domokos (https://github.com/adomokos)",
"Austin Birch (https://github.com/austinbirch)",
"Avi Vahl (https://github.com/AviVahl)",
"Ben Bradley (https://github.com/ben-bradley)",
"beneidel (https://github.com/beneidel)",
"Benjie Gillam (https://github.com/benjie)",
"Ben Noordhuis <info@bnoordhuis.nl> (https://github.com/bnoordhuis)",
"Benoit Larroque (https://github.com/zetaben)",
"Benoît Zugmeyer (https://github.com/BenoitZugmeyer)",
"Ben Vinegar (https://github.com/benvinegar)",
"Berker Peksag <berker.peksag@gmail.com> (https://github.com/berkerpeksag)",
"Bjørge Næss (https://github.com/bjoerge)",
"Brendan Nee <brendan@blinktag.com> (https://github.com/brendannee)",
"Brian Beck <exogen@gmail.com> (https://github.com/exogen)",
"Brian C <brian.m.carlson@gmail.com> (https://github.com/brianc)",
"Brian Lalor <blalor@bravo5.org> (https://github.com/blalor)",
"Brian Moore (https://github.com/bionicbrian)",
"Bryan Donovan (https://github.com/BryanDonovan)",
"Buck Doyle (https://github.com/backspace)",
"C. Scott Ananian <cscott@cscott.net> (https://github.com/cscott)",
"Casey Foster (https://github.com/caseywebdev)",
"Charles Lowell <cowboyd@frontside.io> (https://github.com/cowboyd)",
"Chris Buckley <chris@cmbuckley.co.uk> (https://github.com/cmbuckley)",
"Christopher Hiller <boneskull@boneskull.com> (https://github.com/boneskull)",
"Chris Wren <chriswrendev@gmail.com> (https://github.com/ChrisWren)",
"Clemens Stolle (https://github.com/klaemo)",
"Connor Dunn (https://github.com/Connorhd)",
"Corey Butler (https://github.com/coreybutler)",
"Cory Thomas (https://github.com/dump247)",
"cybertk (https://github.com/cybertk)",
"Daniel Ericsson (https://github.com/monowerker)",
"Daniel Ruf (https://github.com/danielruf)",
"Daniel St. Jules <danielst.jules@gmail.com> (https://github.com/danielstjules)",
"Daniel Stockman <daniel.stockman@gmail.com> (https://github.com/evocateur)",
"Dave McKenna <davemckenna01@gmail.com> (https://github.com/davemckenna01)",
"David da Silva <yo@dasilvacont.in> (https://github.com/dasilvacontin)",
"David Henderson (https://github.com/dhendo)",
"Denis Bardadym <bardadymchik@gmail.com> (https://github.com/btd)",
"Devin Weaver <suki@tritarget.org> (https://github.com/sukima)",
"Diogo Monteiro <diogo.gmt@gmail.com> (https://github.com/diogogmt)",
"Dmitry Shirokov <deadrunk@gmail.com> (https://github.com/runk)",
"Domenic Denicola <d@domenic.me> (https://github.com/domenic)",
"Dominic Barnes <dominic@dbarnes.info> (https://github.com/dominicbarnes)",
"domq (https://github.com/domq)",
"Douglas Wilson <doug@somethingdoug.com> (https://github.com/dougwilson)",
"Duncan Beevers <duncan@dweebd.com> (https://github.com/duncanbeevers)",
"Duncan Wong (https://github.com/badunk)",
"eiji.ienaga (https://github.com/haru01)",
"Fabio Crisci <piuccio@gmail.com> (https://github.com/piuccio)",
"Fede Ramirez <i@2fd.me> (https://github.com/2fd)",
"Fedor Indutny <fedor@indutny.com> (https://github.com/indutny)",
"fengmk2 <m@fengmk2.com> (https://github.com/fengmk2)",
"Florian Margaine <florian@margaine.com> (https://github.com/ralt)",
"Forbes Lindesay (https://github.com/ForbesLindesay)",
"Frederico Silva (https://github.com/fredericosilva)",
"Fredrik Enestad <fredrik.enestad@soundtrackyourbrand.com> (https://github.com/fredr)",
"Fredrik Lindin (https://github.com/Cowboy-coder)",
"Gabriel Silk (https://github.com/gsilk)",
"Gareth Aye <gareth.aye@gmail.com> (https://github.com/gaye)",
"Gavin Mogan <gavin@gavinmogan.com> (https://github.com/halkeye)",
"gigadude (https://github.com/gigadude)",
"Giovanni Bassi (https://github.com/giggio)",
"Glen Huang <curvedmark@gmail.com> (https://github.com/curvedmark)",
"Glen Mailer <glen@stainlessed.co.uk> (https://github.com/glenjamin)",
"Greg Perkins <gregperkins@alum.mit.edu> (https://github.com/gregrperkins)",
"Guillermo Rauch <rauchg@gmail.com> (https://github.com/rauchg)",
"Guy Arye (https://github.com/aryeguy)",
"Gyandeep Singh <gyandeeps@gmail.com> (https://github.com/gyandeeps)",
"Harish <hyeluri@gmail.com> (https://github.com/hyeluri)",
"Harry Brundage <harry.brundage@gmail.com> (https://github.com/airhorns)",
"Ian Remmel <design@ianwremmel.com> (https://github.com/ianwremmel)",
"Ian Storm Taylor (https://github.com/ianstormtaylor)",
"Ian Young <ian@iangreenleaf.com> (https://github.com/iangreenleaf)",
"Ivan (https://github.com/ivanstoyanov)",
"Jaakko Salonen (https://github.com/jsalonen)",
"Jacob Wejendorp <jacob@wejendorp.dk> (https://github.com/wejendorp)",
"Jake Craige (https://github.com/jakecraige)",
"Jake Marsh (https://github.com/jakemmarsh)",
"Jake Mc <jake.mc@icloud.com> (https://github.com/startswithaj)",
"Jake Verbaten <raynos2@gmail.com> (https://github.com/Raynos)",
"Jakub Nešetřil <jakub@apiary.io> (https://github.com/zzen)",
"James Bowes (https://github.com/jbowes)",
"James Carr <james.r.carr@gmail.com> (https://github.com/jamescarr)",
"James G. Kim <jgkim@jayg.org> (https://github.com/jgkim)",
"James Lal <james@lightsofapollo.com> (https://github.com/lightsofapollo)",
"James Nylen <jnylen@gmail.com> (https://github.com/nylen)",
"Jason (https://github.com/jlai)",
"Jason Barry <jay@jcbarry.com> (https://github.com/JCBarry)",
"Javier Aranda <javier.aranda.varo@gmail.com> (https://github.com/javierav)",
"jcreamer898 (https://github.com/jcreamer898)",
"Jean Ponchon (https://github.com/nopnop)",
"Jeff Kunkle (https://github.com/kunklejr)",
"Jeff Schilling <jeff@manicwave.com> (https://github.com/jschilli)",
"JeongHoon Byun (aka Outsider) <outsideris@gmail.com> (https://github.com/outsideris)",
"Jeremy Martin (https://github.com/jmar777)",
"jimenglish81 (https://github.com/jimenglish81)",
"Jimmy Cuadra (https://github.com/jimmycuadra)",
"jldailey (https://github.com/jldailey)",
"jleyba (https://github.com/jleyba)",
"Joey Cozza <joeycozza@gmail.com> (https://github.com/joeycozza)",
"Johnathon Sanders (https://github.com/outdooricon)",
"John Doty <jrhdoty@gmail.com> (https://github.com/jrhdoty)",
"John Firebaugh <john.firebaugh@gmail.com> (https://github.com/jfirebaugh)",
"John Reeves (https://github.com/jonnyreeves)",
"Jo Liss <joliss42@gmail.com> (https://github.com/joliss)",
"Jonas Dohse (https://github.com/dohse)",
"Jonathan Kim <hello@jkimbo.co.uk> (https://github.com/jkimbo)",
"Jonathan Park <jonathan.daniel.park@gmail.com> (https://github.com/park9140)",
"jongleberry <me@jongleberry.com> (https://github.com/jonathanong)",
"Jordan Sexton <jordan@jordansexton.com> (https://github.com/jordansexton)",
"Joseph Spencer (https://github.com/jsdevel)",
"Josh Lory (https://github.com/joshlory)",
"Joshua Appelman <joshua@jbna.nl> (https://github.com/jbnicolai)",
"Joshua Krall <joshuakrall@pobox.com> (https://github.com/jkrall)",
"João Moreno (https://github.com/joaomoreno)",
"João Paulo Bochi <jpbochi@gmail.com> (https://github.com/jpbochi)",
"jugglinmike (https://github.com/jugglinmike)",
"Julien Wajsberg (https://github.com/julienw)",
"Jussi Virtanen <contact@jvirtanen.org> (https://github.com/jvirtanen)",
"Justin DuJardin (https://github.com/justindujardin)",
"Juzer Ali <juzerali@live.com> (https://github.com/juzerali)",
"Jérémie Astori (https://github.com/astorije)",
"Katie Gengler (https://github.com/kategengler)",
"Kazuhito Hokamura (https://github.com/hokaccha)",
"Keith Cirkel (https://github.com/keithamus)",
"Kent C. Dodds <kent+github@doddsfamily.us> (https://github.com/kentcdodds)",
"Kevin Burke <kev@inburke.com> (https://github.com/kevinburke)",
"Kevin Conway <kevinjacobconway@gmail.com> (https://github.com/kevinconway)",
"Kevin Kirsche <Kev.Kirsche@gmail.com> (https://github.com/kkirsche)",
"Kirill Korolyov <kirill.korolyov@gmail.com> (https://github.com/Dremora)",
"Koen Punt <mail@koen.pt> (https://github.com/koenpunt)",
"Konstantin Käfer <mail@kkaefer.com> (https://github.com/kkaefer)",
"Kris Rasmussen (https://github.com/krisr)",
"Kyle Mitchell <kyle@kemitchell.com> (https://github.com/kemitchell)",
"lakmeer (https://github.com/lakmeer)",
"Liam Newman <bitwiseman@gmail.com> (https://github.com/bitwiseman)",
"Linus Unnebäck <linus@folkdatorn.se> (https://github.com/LinusU)",
"Long Ho <holevietlong@gmail.com> (https://github.com/longlho)",
"László Bácsi <lackac@lackac.hu> (https://github.com/lackac)",
"Maciej Małecki <me@mmalecki.com> (https://github.com/mmalecki)",
"Mal Graty (https://github.com/mal)",
"Marcello Bastéa-Forte <marcello@cellosoft.com> (https://github.com/marcello3d)",
"Marc Kuo <marc@routific.com> (https://github.com/mck-)",
"Mark Banner (https://github.com/Standard8)",
"Matija Marohnić <matija.marohnic@gmail.com> (https://github.com/silvenon)",
"Matthew Shanley <matthewshanley@littlesecretsrecords.com> (https://github.com/arkadyan)",
"mattias-lw (https://github.com/mattias-lw)",
"Matt Robenolt <m@robenolt.com> (https://github.com/mattrobenolt)",
"Matt Smith <matt@twobitfool.com> (https://github.com/twobitfool)",
"Max Goodman <c@chromako.de> (https://github.com/chromakode)",
"Maximilian Antoni <mail@maxantoni.de> (https://github.com/mantoni)",
"Merrick Christensen <merrick.christensen@gmail.com> (https://github.com/iammerrick)",
"michael-adsk (https://github.com/michael-adsk)",
"Michael Demmer (https://github.com/demmer)",
"Michael Jackson <mjijackson@gmail.com> (https://github.com/mjackson)",
"Michael Schoonmaker <michael.r.schoonmaker@gmail.com> (https://github.com/Schoonology)",
"Michal Charemza (https://github.com/michalc)",
"Mike Olson (https://github.com/mwolson)",
"Mislav Marohnić <mislav.marohnic@gmail.com> (https://github.com/mislav)",
"mrShturman (https://github.com/mrShturman)",
"Nathan Alderson <nathan@nathanalderson.com> (https://github.com/nathanalderson)",
"Nathan Black <nathan@nathanblack.org> (https://github.com/nathanboktae)",
"Nathan Bowser <nbowser@gmail.com> (https://github.com/nathanbowser)",
"Nathan Houle <nathan+github@nathanhoule.com> (https://github.com/ndhoule)",
"Nathan Rajlich <nathan@tootallnate.net> (https://github.com/TooTallNate)",
"Nick Fitzgerald (https://github.com/fitzgen)",
"Nikolaos Georgiou (https://github.com/ngeor)",
"noirlab (https://github.com/noirlab)",
"Noshir Patel <nosh@blackpiano.com> (https://github.com/noshir-patel)",
"OlegTsyba <oleg.tsyba.ua@gmail.com> (https://github.com/OlegTsyba)",
"omar (https://github.com/omardelarosa)",
"Panu Horsmalahti <panu.horsmalahti@iki.fi> (https://github.com/panuhorsmalahti)",
"Parker Moore <email@byparker.com> (https://github.com/parkr)",
"Paul Armstrong (https://github.com/paularmstrong)",
"Paul Miller <paul+gh@paulmillr.com> (https://github.com/paulmillr)",
"Pavel Zubkou (https://github.com/irnc)",
"Pete Hawkins (https://github.com/phawk)",
"Phil Sung <philbert@gmail.com> (https://github.com/psung)",
"Prayag Verma <prayag.verma@gmail.com> (https://github.com/pra85)",
"qiu zuhui <qiuzuhui@gmail.com> (https://github.com/qiuzuhui)",
"Quang Van <quang@boldapps.io> (https://github.com/quangv)",
"Rauno (https://github.com/Rauno56)",
"Refael Ackermann <me@refack.com> (https://github.com/refack)",
"Richard Dingwall <rdingwall@gmail.com> (https://github.com/rdingwall)",
"Richard Knop (https://github.com/RichardKnop)",
"Rico Sta. Cruz <hi@ricostacruz.com> (https://github.com/rstacruz)",
"Robert Rossmann (https://github.com/Alaneor)",
"Rob Wu <rob@robwu.nl> (https://github.com/Rob--W)",
"Romain (https://github.com/rprieto)",
"Roman Neuhauser <rneuhauser@sigpipe.cz> (https://github.com/roman-neuhauser)",
"Roman Shtylman (https://github.com/defunctzombie)",
"Russ Bradberry <devdazed@me.com> (https://github.com/devdazed)",
"Russell Munson (https://github.com/rmunson)",
"Rustem Mustafin <mustafin.rustem@gmail.com> (https://github.com/rulikkk)",
"Ryan <ryan.shaw@min.vc> (https://github.com/ryan-shaw)",
"Ryan Hubbard (https://github.com/ryedog)",
"Ryunosuke Sato <tricknotes.rs@gmail.com> (https://github.com/tricknotes)",
"ryym (https://github.com/ryym)",
"Salehen Shovon Rahman <sal@linux.com> (https://github.com/shovon)",
"Salvador de la Puente González <salva@unoyunodiez.com> (https://github.com/delapuente)",
"Sam Mussell (https://github.com/smussell)",
"Samuel Goldszmidt <samuel.goldszmidt@gmail.com> (https://github.com/ouhouhsami)",
"Sasha Koss <kossnocorp@gmail.com> (https://github.com/kossnocorp)",
"Scott Santucci <ScottFreeCode@gmail.com> (https://github.com/ScottFreeCode)",
"Sean Lang <slang800@gmail.com> (https://github.com/slang800)",
"seb vincent <seb.vincent@gmail.com> (https://github.com/sebv)",
"Seiya Konno <nulltask@gmail.com> (https://github.com/nulltask)",
"Sergey Simonchik (https://github.com/segrey)",
"Sergio Santoro (https://github.com/taueres)",
"Shahar Soel (https://github.com/bd82)",
"Shaine Hatch (https://github.com/shaine)",
"Shiwei Wang (https://github.com/wsw0108)",
"Simon Gaeremynck (https://github.com/simong)",
"Simon Goumaz (https://github.com/sgoumaz)",
"Sindre Sorhus <sindresorhus@gmail.com> (https://github.com/sindresorhus)",
"slientcloud <rjmuqiang@gmail.com> (https://github.com/silentcloud)",
"Sorin Iclanzan (https://github.com/iclanzan)",
"Standa Opichal <opichals@gmail.com> (https://github.com/opichals)",
"Stephen Mathieson <me@stephenmathieson.com> (https://github.com/stephenmathieson)",
"Steve Mason (https://github.com/spmason)",
"Stewart Taylor <stewart@taylore.net> (https://github.com/Stewart-Taylor)",
"Sune Simonsen <sune@we-knowhow.dk> (https://github.com/sunesimonsen)",
"Sylvain Faucherand (https://github.com/slyg)",
"Takuya Nishigori <nishigori.tak@gmail.com> (https://github.com/nishigori)",
"Taylor Gautier (https://github.com/tsgautier)",
"Teddy Zeenny (https://github.com/teddyzeenny)",
"Thomas Grainger <https//@graingert.co.uk> (https://github.com/graingert)",
"Tim Ehat (https://github.com/timehat)",
"Timothy Gu <timothygu99@gmail.com> (https://github.com/TimothyGu)",
"Timo Tijhof <krinklemail@gmail.com> (https://github.com/Krinkle)",
"Tingan Ho <tingan87@gmail.com> (https://github.com/tinganho)",
"TJ Holowaychuk <tj@vision-media.ca> (https://github.com/tj)",
"Tobias Bieniek <tobias.bieniek@gmail.com> (https://github.com/Turbo87)",
"Toby Ho <airportyh@gmail.com> (https://github.com/airportyh)",
"Todd Agulnick (https://github.com/tawdle)",
"Tom Hughes (https://github.com/tomhughes)",
"Tommy Montgomery (https://github.com/tmont)",
"traleig1 (https://github.com/traleig1)",
"Travis Jeffery <tj@travisjeffery.com> (https://github.com/travisjeffery)",
"Tyson Tate <tyson@tysontate.com> (https://github.com/tysontate)",
"Valentin Agachi (https://github.com/avaly)",
"Victor Costan <victor@costan.us> (https://github.com/pwnall)",
"Vladimir Chernis (https://github.com/vlazzle)",
"Vlad Magdalin <vlad@webflow.com> (https://github.com/callmevlad)",
"Will Langstroth (https://github.com/wlangstroth)",
"Wil Moore III <wil.moore@wilmoore.com> (https://github.com/wilmoore)",
"Xavier Antoviaque <xavier@opencraft.com> (https://github.com/antoviaque)",
"Xavier Damman <xdamman@gmail.com> (https://github.com/xdamman)",
"Yanis Wang <yanis.wang@gmail.com> (https://github.com/yaniswang)",
"yuitest <developer.yuitest+github@cjhat.net> (https://github.com/yuitest)",
"Zhiye Li <github@zhiye.li> (https://github.com/zhiyelee)",
"Zhouxuan Yang <fool2fish@gmail.com> (https://github.com/fool2fish)",
"Zsolt Takács <firstname at lastname dot cc> (https://github.com/oker1)"
"38elements <mh19820223@gmail.com>",
"Aaron Brady <aaron@mori.com>",
"Aaron Hamid <aaron.hamid@gmail.com>",
"Aaron Heckmann <aaron.heckmann+github@gmail.com>",
"Aaron Krause <aaronjkrause@gmail.com>",
"Aaron Petcoff <hello@aaronpetcoff.me>",
"abrkn <a@abrkn.com>",
"Adam Crabtree <adam.crabtree@redrobotlabs.com>",
"Adam Gruber <talknmime@gmail.com>",
"Adrian Ludwig <me@adrianludwig.pl>",
"Ahmad Bamieh <ahmadbamieh@gmail.com>",
"airportyh <airportyh@gmail.com>",
"Ajay Kodali <ajay.kodali@citrix.com>",
"Al Scott <al.scott@atomicobject.com>",
"Alex Bainter <metalex9@users.noreply.github.com>",
"Alexander Early <alexander.early@gmail.com>",
"Alexander Shepelin <Brightcor@gmail.com>",
"Alhadis <gardnerjohng@gmail.com>",
"amsul <reach@amsul.ca>",
"Anders Olsen Sandvik <Andersos@users.noreply.github.com>",
"Andreas Brekken <andreas@opuno.com>",
"Andreas Lind Petersen <andreas@one.com>",
"Andrew Krawchyk <903716+akrawchyk@users.noreply.github.com>",
"Andrew Nesbitt <andrewnez@gmail.com>",
"Andrey Popp <8mayday@gmail.com>",
"Andrii Shumada <eagleeyes91@gmail.com>",
"andy matthews <andy@commadelimited.com>",
"Angelica Valenta <angelicavalenta@gmail.com>",
"Anis Safine <anis.safine.ext@francetv.fr>",
"Anish Karandikar <anishkny@gmail.com>",
"Anthony <keppi@o2.pl>",
"Anton <anton.redfox@gmail.com>",
"anton <anton.valickij@gmail.com>",
"APerson <danielhglus@gmail.com>",
"Arian Stolwijk <arian@aryweb.nl>",
"Ariel Mashraki <ariel@mashraki.co.il>",
"Arnaud Brousseau <arnaud.brousseau@gmail.com>",
"Artem Govorov <artem.govorov@gmail.com>",
"Atsuya Takagi <asoftonight@gmail.com>",
"Attila Domokos <adomokos@gmail.com>",
"Austin Birch <mraustinbirch@gmail.com>",
"Avi Vahl <avi.vahl@wix.com>",
"badunk <baduncaduncan@gmail.com>",
"Bamieh <ahmadbamieh@gmail.com>",
"Ben Bradley <ben@bradleyit.com>",
"Ben Harris <benhdev@gmail.com>",
"Ben Hutchison <ben@aldaviva.com>",
"Ben Lindsey <ben.lindsey@vungle.com>",
"Ben Noordhuis <info@bnoordhuis.nl>",
"Ben Vinegar <ben@benv.ca>",
"Benjamin Eidelman <beneidel@gmail.com>",
"Benjie Gillam <benjie@jemjie.com>",
"Benoit Larroque <zeta.ben@gmail.com>",
"Benoît Zugmeyer <bzugmeyer@gmail.com>",
"Benson Trent <bensontrent@gmail.com>",
"Berker Peksag <berker.peksag@gmail.com>",
"berni <berni@extensa.pl>",
"Bjørge Næss <bjoerge@origo.no>",
"Brendan Nee <brendan.nee@gmail.com>",
"Brian Beck <exogen@gmail.com>",
"Brian Lalor <blalor@bravo5.org>",
"Brian M. Carlson <brian.m.carlson@gmail.com>",
"Brian Moore <guardbionic-github@yahoo.com>",
"Bryan Donovan <bdondo@gmail.com>",
"Buck Doyle <b@chromatin.ca>",
"C. Scott Ananian <cscott@cscott.net>",
"Callum Macrae <callum@macr.ae>",
"Can Oztokmak <can@zeplin.io>",
"Capacitor Set <CapacitorSet@users.noreply.github.com>",
"Casey Foster <casey@caseywebdev.com>",
"Charles Lowell <cowboyd@frontside.io>",
"Charles Merriam <charles.merriam@gmail.com>",
"Charlie Rudolph <charles.w.rudolph@gmail.com>",
"Chris <chrisleck@users.noreply.github.com>",
"Chris Buckley <chris@cmbuckley.co.uk>",
"Chris Lamb <chris@chris-lamb.co.uk>",
"Christian <me@rndm.de>",
"Christoffer Hallas <christoffer.hallas@gmail.com>",
"Christoph Neuroth <christoph.neuroth@gmail.com>",
"Christopher Hiller <boneskull@boneskull.com>",
"ChrisWren <cthewren@gmail.com>",
"claudyus <claudyus@HEX.(none)>",
"Connor Dunn <connorhd@gmail.com>",
"Corey Butler <corey@coreybutler.com>",
"Cory Thomas <cory.thomas@bazaarvoice.com>",
"Craig Taub <craigtaub@gmail.com>",
"Cube <maty21@gmail.com>",
"Daniel Ruf <daniel@daniel-ruf.de>",
"Daniel St. Jules <danielst.jules@gmail.com>",
"Daniel Stockman <daniel.stockman@gmail.com>",
"Darryl Pogue <dvpdiner2@gmail.com>",
"Dave McKenna <davemckenna01@gmail.com>",
"David da Silva Contín <dasilvacontin@gmail.com>",
"David Henderson <david.henderson@triggeredmessaging.com>",
"David M. Lee <leedm777@yahoo.com>",
"David Neubauer <davidneub@gmail.com>",
"Denis Bardadym <bardadymchik@gmail.com>",
"Devin Weaver <suki@tritarget.org>",
"Di Wu <dwu@palantir.com>",
"Dina Berry <dfberry@users.noreply.github.com>",
"Diogo Monteiro <diogo.gmt@gmail.com>",
"Dmitriy Simushev <simushevds@gmail.com>",
"Dmitry Shirokov <deadrunk@gmail.com>",
"Dmitry Sorin <info@staypositive.ru>",
"Domenic Denicola <domenic@domenicdenicola.com>",
"Dominic Barnes <dominic@dbarnes.info>",
"Dominique Quatravaux <dominique@quatravaux.org>",
"Douglas Christopher Wilson <doug@somethingdoug.com>",
"Duncan Beevers <duncan@dweebd.com>",
"eiji.ienaga <eiji.ienaga@gmail.com>",
"elergy <elergy@yandex-team.ru>",
"Eli Skeggs <skeggse@users.noreply.github.com>",
"ELLIOTTCABLE <me@ell.io>",
"Emanuele <my.burning@gmail.com>",
"Enric Pallerols <enric@pallerols.cat>",
"Erik Eng <mail@ptz0n.se>",
"Eugene Tiutiunnyk <eugene.tiutiunnyk@lookout.com>",
"Fabio M. Costa <fabiomcosta@gmail.com>",
"Fagner Brack <github3@fagnermartins.com>",
"FARKAS Máté <mate.farkas@virtual-call-center.eu>",
"fcrisci <fabio.crisci@amadeus.com>",
"Fede Ramirez <i@2fd.me>",
"Fedor Indutny <fedor.indutny@gmail.com>",
"fengmk2 <fengmk2@gmail.com>",
"Florian Margaine <florian@margaine.com>",
"FND <FND@users.noreply.github.com>",
"fool2fish <fool2fish@gmail.com>",
"Forbes Lindesay <forbes@lindesay.co.uk>",
"Frank Leon Rose <frankleonrose@gmail.com>",
"Frederico Silva <frederico.silva@gmail.com>",
"Fredrik Enestad <fredrik@devloop.se>",
"Fredrik Lindin <fredriklindin@gmail.com>",
"Fumiaki MATSUSHIMA <mtsmfm@gmail.com>",
"Gabriel Silk <gabesilk@gmail.com>",
"Gareth Aye <gaye@mozilla.com>",
"Gareth Murphy <gareth.cpm@gmail.com>",
"Gavin Mogan <GavinM@airg.com>",
"gaye <gaye@mozilla.com>",
"gigadude <gigadude@users.noreply.github.com>",
"Giovanni Bassi <giggio@giggio.net>",
"Glen Huang <curvedmark@gmail.com>",
"Glen Mailer <glenjamin@gmail.com>",
"grasGendarme <me@grasgendar.me>",
"Greg Perkins <gregperkins@alum.mit.edu>",
"Guangcong Luo <guangcongluo@gmail.com>",
"Guillermo Rauch <rauchg@gmail.com>",
"Guy Arye <arye.guy@gmail.com>",
"Gyandeep Singh <gyandeeps@gmail.com>",
"Harish <hyeluri@gmail.com>",
"Harry Brundage <harry.brundage@gmail.com>",
"Harry Sarson <harry.sarson@hotmail.co.uk>",
"Harry Wolff <hswolff@users.noreply.github.com>",
"Herman Junge <herman@geekli.st>",
"hokaccha <k.hokamura@gmail.com>",
"Honza Javorek <mail@honzajavorek.cz>",
"Hugo Giraudel <hugo.giraudel@gmail.com>",
"Ian Storm Taylor <ian@ianstormtaylor.com>",
"Ian W. Remmel <design@ianwremmel.com>",
"Ian Young <ian.greenleaf@gmail.com>",
"Ian Zamojc <ian@thesecretlocation.net>",
"Igwe Kalu <igwe.kalu@live.com>",
"ImgBot <31427850+ImgBotApp@users.noreply.github.com>",
"inxorable <inxorable@codewren.ch>",
"Ivan <ivan@kinvey.com>",
"Jaakko Salonen <jaakko.salonen@iki.fi>",
"Jacob Wejendorp <jacob@wejendorp.dk>",
"Jake Craige <james.craige@gmail.com>",
"Jake Marsh <jakemmarsh@gmail.com>",
"Jakob Krigovsky <jakob@krigovsky.com>",
"Jakub Nešetřil <jakub@apiary.io>",
"James Bowes <jbowes@repl.ca>",
"James Carr <james.r.carr@gmail.com>",
"James G. Kim <jgkim@jayg.org>",
"James Lal <james@lightsofapollo.com>",
"James Nylen <jnylen@gmail.com>",
"Jan Kopriva <jan.kopriva@gooddata.com>",
"Jan Krems <jan.krems@groupon.com>",
"Jan Lehnardt <jan@apache.org>",
"Jason Barry <jay@jcbarry.com>",
"Jason Lai <jason@getpebble.com>",
"Jason Leyba <jmleyba@gmail.com>",
"Javier Aranda <javierav@javierav.com>",
"Jean Ponchon <gelule@gmail.com>",
"Jeff Kunkle <jeff.kunkle@nearinfinity.com>",
"Jeff Schilling <jeff.schilling@q2ebanking.com>",
"JeongHoon Byun (aka Outsider) <outsideris@gmail.com>",
"Jérémie Astori <jeremie@astori.fr>",
"Jeremy Martin <jmar777@gmail.com>",
"Jerry Muzsik <jerrymuzsik@icloud.com>",
"Jesse Dailey <jesse.dailey@gmail.com>",
"jimenglish81 <jimenglish81@gmail.com>",
"Jimmy Cuadra <jimmy@jimmycuadra.com>",
"Jo Liss <joliss42@gmail.com>",
"Joao Moreno <mail@joaomoreno.com>",
"Joel Kemp <mrjoelkemp@gmail.com>",
"Joey Cozza <joey@grow.com>",
"John Doty <jrhdoty@gmail.com>",
"John Firebaugh <john.firebaugh@gmail.com>",
"John Reeves <github@jonnyreeves.co.uk>",
"Johnathon Sanders <outdooricon@gmail.com>",
"Jon Surrell <jon.surrell@automattic.com>",
"Jonas Dohse <jonas@mbr-targeting.com>",
"Jonas Westerlund <jonas.westerlund@me.com>",
"Jonathan Creamer <matrixhasyou2k4@gmail.com>",
"Jonathan Delgado <jdelgado@rewip.com>",
"Jonathan Kim <jkimbo@gmail.com>",
"Jonathan Ong <jonathanrichardong@gmail.com>",
"Jonathan Park <jpark@daptiv.com>",
"Jonathan Rajavuori <jrajav@gmail.com>",
"Jordan Sexton <jordan@jordansexton.com>",
"Joseph Lin <josephlin55555@gmail.com>",
"Josh Eversmann <josh.eversmann@gmail.com>",
"Josh Lory <josh.lory@code.org>",
"Josh Soref <jsoref@users.noreply.github.com>",
"Joshua Appelman <jappelman@xebia.com>",
"Joshua Krall <joshuakrall@pobox.com>",
"JP Bochi <jpbochi@gmail.com>",
"jsdevel <js.developer.undefined@gmail.com>",
"Julien Wajsberg <felash@gmail.com>",
"Jupp Müller <jupp0r@gmail.com>",
"Jussi Virtanen <jussi.k.virtanen@gmail.com>",
"Justin DuJardin <justin.dujardin@sococo.com>",
"Juzer Ali <er.juzerali@gmail.com>",
"Katie Gengler <katiegengler@gmail.com>",
"kavun <kevin.a.reed@gmail.com>",
"Kazuhito Hokamura <k.hokamura@gmail.com>",
"Keith Cirkel <github@keithcirkel.co.uk>",
"Kelong Wang <buaawkl@gmail.com>",
"Kent C. Dodds <kent+github@doddsfamily.us>",
"Kevin Burke <kev@inburke.com>",
"Kevin Conway <kevinjacobconway@gmail.com>",
"Kevin Kirsche <Kev.Kirsche+GitHub@gmail.com>",
"Kevin Partington <platinum.azure@kernelpanicstudios.com>",
"Kevin Wang <kevin@fossa.io>",
"Kirill Korolyov <kirill.korolyov@gmail.com>",
"klaemo <klaemo@fastmail.fm>",
"Koen Punt <koen@koenpunt.nl>",
"Konstantin Käfer <github@kkaefer.com>",
"Kris Rasmussen <kristopher.rasmussen@gmail.com>",
"Kunal Nagpal <kunagpal@users.noreply.github.com>",
"Kyle Mitchell <kyle@kemitchell.com>",
"lakmeer <lakmeerkravid@gmail.com>",
"Lane Kelly <lanekelly16@gmail.com>",
"László Bácsi <lackac@lackac.hu>",
"Laurence Rowe <lrowe@netflix.com>",
"Liam Newman <bitwiseman@gmail.com>",
"Linus Unnebäck <linus@folkdatorn.se>",
"lodr <salva@unoyunodiez.com>",
"Long Ho <longlho@users.noreply.github.com>",
"Maciej Małecki <maciej.malecki@notimplemented.org>",
"Mal Graty <mal.graty@googlemail.com>",
"Marais Rossouw <me@maraisr.com>",
"Marc Kuo <kuomarc2@gmail.com>",
"Marcello Bastea-Forte <marcello@cellosoft.com>",
"Mark Banner <standard8@mozilla.com>",
"Markus Tacker <m@coderbyheart.com>",
"Martin Marko <marcus@gratex.com>",
"Mathieu Desvé <mathieudesve@MacBook-Pro-de-Mathieu.local>",
"Matija Marohnić <matija.marohnic@gmail.com>",
"Matt Bierner <mattbierner@gmail.com>",
"Matt Giles <matt.giles@cerner.com>",
"Matt Robenolt <matt@ydekproductions.com>",
"Matt Smith <matthewgarysmith@gmail.com>",
"Matthew Shanley <matthewshanley@littlesecretsrecords.com>",
"Mattias Tidlund <mattias.tidlund@learningwell.se>",
"Max Goodman <c@chromakode.com>",
"Maximilian Antoni <mail@maxantoni.de>",
"Merrick Christensen <merrick.christensen@gmail.com>",
"Michael Demmer <demmer@jut.io>",
"Michael Jackson <mjijackson@gmail.com>",
"Michael Olson <mwolson@member.fsf.org>",
"Michael Riley <michael.riley@autodesk.com>",
"Michael Schoonmaker <michael.r.schoonmaker@gmail.com>",
"Michal Charemza <michalcharemza@gmail.com>",
"Michiel de Jong <michiel@unhosted.org>",
"Mick Brooks <mick.brooks@sinking.in>",
"Mike Pennisi <mike@mikepennisi.com>",
"Mislav Marohnić <mislav.marohnic@gmail.com>",
"monowerker <monowerker@gmail.com>",
"Moshe Kolodny <mkolodny@integralads.com>",
"mrShturman <mrshturman@gmail.com>",
"Nathan Alderson <nathan.alderson@adtran.com>",
"Nathan Black <nathan@nathanblack.org>",
"Nathan Bowser <nathan.bowser@spiderstrategies.com>",
"Nathan Houle <nathan@nathanhoule.com>",
"Nathan Rajlich <nathan@tootallnate.net>",
"nexdrew <andrew.goode@nextraq.com>",
"Nick Fitzgerald <fitzgen@gmail.com>",
"Nicolo Taddei <taddei.uk@gmail.com>",
"Nik Nyby <nnyby@columbia.edu>",
"Nikolaos Georgiou <Nikolaos.Georgiou@gmail.com>",
"nishigori <Takuya_Nishigori@voyagegroup.com>",
"Noshir Patel <nosh@blackpiano.com>",
"not-an-aardvark <not-an-aardvark@users.noreply.github.com>",
"OlegTsyba <oleg.tsyba.ua@gmail.com>",
"olsonpm <olsonpm@users.noreply.github.com>",
"omardelarosa <thedelarosa@gmail.com>",
"Oscar Godson <oscargodson@outlook.com>",
"Outsider <outsideris@gmail.com>",
"oveddan <stangogh@gmail.com>",
"Panu Horsmalahti <panu.horsmalahti@iki.fi>",
"Parker Moore <parkrmoore@gmail.com>",
"Pat Finnigan <patrick.k.finnigan@gmail.com>",
"Paul Armstrong <paul@paularmstrongdesigns.com>",
"Paul Miller <paul@paulmillr.com>",
"Pavel Zubkou <pavel.zubkou@gmail.com>",
"Pete Hawkins <pete@petes-imac.frontinternal.net>",
"Peter Müller <munter@fumle.dk>",
"Peter Rust <peter@cornerstonenw.com>",
"Phil Sung <psung@dnanexus.com>",
"Philip M. White <philip@mailworks.org>",
"PoppinL <poppinlp@gmail.com>",
"Poprádi Árpád <popradi.arpad11@gmail.com>",
"Prayag Verma <prayag.verma@gmail.com>",
"qiuzuhui <qiuzuhui@users.noreply.github.com>",
"Quang Van <quangvvv@gmail.com>",
"Quanlong He <kyan.ql.he@gmail.com>",
"R56 <rviskus@gmail.com>",
"Raynos <raynos2@gmail.com>",
"Refael Ackermann <refael@empeeric.com>",
"Rich Trott <rtrott@gmail.com>",
"Richard Dingwall <rdingwall@gmail.com>",
"Richard Knop <RichardKnop@users.noreply.github.com>",
"Rico Sta. Cruz <rstacruz@users.noreply.github.com>",
"rmacklin <richard.github@nrm.com>",
"Rob Loach <robloach@gmail.com>",
"Rob Raux <rraux@peachworks.com>",
"Rob Wu <rob@robwu.nl>",
"Robert Rossmann <rr.rossmann@me.com>",
"Romain Prieto <romain.prieto@gmail.com>",
"Roman Neuhauser <rneuhauser@suse.cz>",
"Roman Shtylman <shtylman@gmail.com>",
"Ross Warren <rosswarren4@gmail.com>",
"rotemdan <rotemdan@gmail.com>",
"Russ Bradberry <devdazed@me.com>",
"Russell Munson <rmunson@github.com>",
"Rustem Mustafin <mustafin.rustem@gmail.com>",
"Ryan Hubbard <ryanmhubbard@gmail.com>",
"Ryan Shaw <ryan.shaw@min.vc>",
"Ryan Tablada <ryan.tablada@gmail.com>",
"Ryunosuke SATO <tricknotes.rs@gmail.com>",
"ryym <ryym.64@gmail.com>",
"Salehen Shovon Rahman <salehen.rahman@gmail.com>",
"Sam Mussell <smussell@gmail.com>",
"samuel goldszmidt <samuel.goldszmidt@gmail.com>",
"sarehag <joakim.sarehag@gmail.com>",
"Sasha Koss <koss@nocorp.me>",
"Scott Kao <Scottkao85@users.noreply.github.com>",
"Scott Santucci <ScottFreeCode@users.noreply.github.com>",
"ScottFreeCode <ScottFreeCode@users.noreply.github.com>",
"Sean Lang <slang800@gmail.com>",
"Sebastian Van Sande <sebastian@vansande.org>",
"sebv <seb.vincent@gmail.com>",
"Seiya Konno <nulltask@gmail.com>",
"Sergey Simonchik <sergey.simonchik@jetbrains.com>",
"Sergio Santoro <santoro.srg@gmail.com>",
"Shaine Hatch <shaine@squidtree.com>",
"Shawn Krisman <telaviv@github>",
"Shinnosuke Watanabe <snnskwtnb@gmail.com>",
"silentcloud <rjmuqiang@gmail.com>",
"Silvio Massari <silvio.massari@auth0.com>",
"Simon Gaeremynck <gaeremyncks@gmail.com>",
"Simon Goumaz <simon@attentif.ch>",
"simov <simeonvelichkov@gmail.com>",
"Sindre Sorhus <sindresorhus@gmail.com>",
"Slobodan Mišković <slobodan@miskovic.ca>",
"slyg <syl.faucherand@gmail.com>",
"Soel <shachar.soel@sap.com>",
"solodynamo <bittuf3@gmail.com>",
"Sorin Iclanzan <sorin@iclanzan.com>",
"Standa Opichal <opichals@gmail.com>",
"startswithaj <jake.mc@icloud.com>",
"Stephen Mathieson <smath23@gmail.com>",
"Steve Mason <stevem@brandwatch.com>",
"Stewart Taylor <stewart.taylor1@gmail.com>",
"Stone <baoshi.li@adleida.com>",
"Sulabh Bista <sul4bh@gmail.com>",
"Sune Simonsen <sune@we-knowhow.dk>",
"Tapiwa Kelvin <tapiwa@munzwa.tk>",
"Ted Yavuzkurt <hello@TedY.io>",
"Teddy Zeenny <teddyzeenny@gmail.com>",
"tgautier@yahoo.com <tgautier@gmail.com>",
"Thedark1337 <thedark1337@thedark1337.com>",
"Thomas Broadley <buriedunderbooks@hotmail.com>",
"Thomas Grainger <tagrain@gmail.com>",
"Thomas Vantuycom <thomasvantuycom@protonmail.com>",
"Tim Ehat <timehat@gmail.com>",
"Timo Tijhof <krinklemail@gmail.com>",
"Timothy Gu <timothygu99@gmail.com>",
"Tingan Ho <tingan87@gmail.com>",
"tmont <tommy.mont@gmail.com>",
"Tobias Bieniek <tobias.bieniek@gmail.com>",
"Todd Agulnick <tagulnick@onjack.com>",
"Tom Coquereau <tom@thau.me>",
"Tom Hughes <tom@compton.nu>",
"Tomer Eskenazi <tomer.eskenazi@ironsrc.com>",
"traleig1 <darkphoenix739@gmail.com>",
"Travis Jeffery <tj@travisjeffery.com>",
"tripu <t@tripu.info>",
"Tyson Tate <tyson@tysontate.com>",
"Vadim Nikitin <vnikiti@ncsu.edu>",
"Valentin Agachi <github-com@agachi.name>",
"Valeri Karpov <val@karpov.io>",
"Victor <victor@turo.com>",
"Victor Costan <costan@gmail.com>",
"Ville Saukkonen <villesau@users.noreply.github.com>",
"Vivek Ganesan <caliberoviv@gmail.com>",
"vlad <iamvlad@gmail.com>",
"Vlad Magdalin <vlad@webflow.com>",
"Volker Buzek <volker.buzek@sap.com>",
"Wil Moore III <wil.moore@wilmoore.com>",
"Will Langstroth <will@langstroth.com>",
"wsw <wsw0108@gmail.com>",
"Xavier Antoviaque <xavier@antoviaque.org>",
"Xavier Damman <xdamman@gmail.com>",
"XhmikosR <xhmikosr@users.sourceforge.net>",
"Yanis Wang <yanis.wang@gmail.com>",
"yehiyam <yehiyam@users.noreply.github.com>",
"Yoshiya Hinosawa <hinosawa@waku-2.com>",
"Yuest Wang <yuestwang@gmail.com>",
"yuitest <yuitest@cjhat.net>",
"zhiyelee <zhiyelee@gmail.com>",
"Zsolt Takács <zsolt@takacs.cc>",
"现充 <qixiang.cqx@alibaba-inc.com>"
],

@@ -318,2 +466,3 @@ "license": "MIT",

"he": "1.1.1",
"minimatch": "3.0.4",
"mkdirp": "0.5.1",

@@ -329,8 +478,9 @@ "supports-color": "4.4.0"

"cross-spawn": "^5.1.0",
"eslint": "^4.8.0",
"eslint-config-semistandard": "^11.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.4.0",
"documentation": "^5.3.5",
"eslint": "^4.19.1",
"eslint-config-semistandard": "^12.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",

@@ -337,0 +487,0 @@ "expect.js": "^0.3.1",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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