mocha 6.1.2 → 6.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +70 -0
- package/bin/mocha +42 -26
- package/lib/cli/cli.js +8 -3
- package/lib/cli/collect-files.js +85 -0
- package/lib/cli/options.js +24 -10
- package/lib/cli/run-helpers.js +35 -193
- package/lib/cli/run-option-metadata.js +14 -3
- package/lib/cli/run.js +7 -11
- package/lib/cli/watch-run.js +106 -0
- package/lib/mocha.js +10 -3
- package/lib/reporters/base.js +16 -9
- package/lib/reporters/doc.js +14 -10
- package/lib/reporters/dot.js +1 -1
- package/lib/reporters/landing.js +1 -1
- package/lib/reporters/list.js +4 -4
- package/lib/reporters/progress.js +2 -2
- package/lib/reporters/spec.js +7 -7
- package/lib/reporters/xunit.js +1 -1
- package/lib/runner.js +1 -25
- package/lib/utils.js +26 -16
- package/mocha.css +0 -1
- package/mocha.js +84 -80
- package/package.json +44 -30
package/mocha.js
CHANGED
|
@@ -1500,6 +1500,10 @@ function Mocha(options) {
|
|
|
1500
1500
|
options.color = 'color' in options ? options.color : options.useColors;
|
|
1501
1501
|
}
|
|
1502
1502
|
|
|
1503
|
+
// Globals are passed in as options.global, with options.globals for backward compatibility.
|
|
1504
|
+
options.globals = options.global || options.globals || [];
|
|
1505
|
+
delete options.global;
|
|
1506
|
+
|
|
1503
1507
|
this.grep(options.grep)
|
|
1504
1508
|
.fgrep(options.fgrep)
|
|
1505
1509
|
.ui(options.ui)
|
|
@@ -1934,7 +1938,7 @@ Mocha.prototype._growl = growl.notify;
|
|
|
1934
1938
|
* Specifies whitelist of variable names to be expected in global scope.
|
|
1935
1939
|
*
|
|
1936
1940
|
* @public
|
|
1937
|
-
* @see {@link https://mochajs.org
|
|
1941
|
+
* @see {@link https://mochajs.org/#-global-variable-name|CLI option}
|
|
1938
1942
|
* @see {@link Mocha#checkLeaks}
|
|
1939
1943
|
* @param {String[]|String} globals - Accepted global variable name(s).
|
|
1940
1944
|
* @return {Mocha} this
|
|
@@ -1945,9 +1949,12 @@ Mocha.prototype._growl = growl.notify;
|
|
|
1945
1949
|
* mocha.globals(['jQuery', 'MyLib']);
|
|
1946
1950
|
*/
|
|
1947
1951
|
Mocha.prototype.globals = function(globals) {
|
|
1948
|
-
this.options.globals =
|
|
1952
|
+
this.options.globals = this.options.globals
|
|
1949
1953
|
.concat(globals)
|
|
1950
|
-
.filter(Boolean)
|
|
1954
|
+
.filter(Boolean)
|
|
1955
|
+
.filter(function(elt, idx, arr) {
|
|
1956
|
+
return arr.indexOf(elt) === idx;
|
|
1957
|
+
});
|
|
1951
1958
|
return this;
|
|
1952
1959
|
};
|
|
1953
1960
|
|
|
@@ -2292,7 +2299,12 @@ exports = module.exports = Base;
|
|
|
2292
2299
|
* Check if both stdio streams are associated with a tty.
|
|
2293
2300
|
*/
|
|
2294
2301
|
|
|
2295
|
-
var isatty =
|
|
2302
|
+
var isatty = process.stdout.isTTY && process.stderr.isTTY;
|
|
2303
|
+
|
|
2304
|
+
/**
|
|
2305
|
+
* Save log references to avoid tests interfering (see GH-3604).
|
|
2306
|
+
*/
|
|
2307
|
+
var consoleLog = console.log;
|
|
2296
2308
|
|
|
2297
2309
|
/**
|
|
2298
2310
|
* Enable coloring by default, except in the browser interface.
|
|
@@ -2459,7 +2471,7 @@ var generateDiff = (exports.generateDiff = function(actual, expected) {
|
|
|
2459
2471
|
* Error property
|
|
2460
2472
|
*/
|
|
2461
2473
|
exports.list = function(failures) {
|
|
2462
|
-
|
|
2474
|
+
Base.consoleLog();
|
|
2463
2475
|
failures.forEach(function(test, i) {
|
|
2464
2476
|
// format
|
|
2465
2477
|
var fmt =
|
|
@@ -2520,7 +2532,7 @@ exports.list = function(failures) {
|
|
|
2520
2532
|
testTitle += str;
|
|
2521
2533
|
});
|
|
2522
2534
|
|
|
2523
|
-
|
|
2535
|
+
Base.consoleLog(fmt, i + 1, testTitle, msg, stack);
|
|
2524
2536
|
});
|
|
2525
2537
|
};
|
|
2526
2538
|
|
|
@@ -2575,7 +2587,7 @@ Base.prototype.epilogue = function() {
|
|
|
2575
2587
|
var stats = this.stats;
|
|
2576
2588
|
var fmt;
|
|
2577
2589
|
|
|
2578
|
-
|
|
2590
|
+
Base.consoleLog();
|
|
2579
2591
|
|
|
2580
2592
|
// passes
|
|
2581
2593
|
fmt =
|
|
@@ -2583,26 +2595,26 @@ Base.prototype.epilogue = function() {
|
|
|
2583
2595
|
color('green', ' %d passing') +
|
|
2584
2596
|
color('light', ' (%s)');
|
|
2585
2597
|
|
|
2586
|
-
|
|
2598
|
+
Base.consoleLog(fmt, stats.passes || 0, milliseconds(stats.duration));
|
|
2587
2599
|
|
|
2588
2600
|
// pending
|
|
2589
2601
|
if (stats.pending) {
|
|
2590
2602
|
fmt = color('pending', ' ') + color('pending', ' %d pending');
|
|
2591
2603
|
|
|
2592
|
-
|
|
2604
|
+
Base.consoleLog(fmt, stats.pending);
|
|
2593
2605
|
}
|
|
2594
2606
|
|
|
2595
2607
|
// failures
|
|
2596
2608
|
if (stats.failures) {
|
|
2597
2609
|
fmt = color('fail', ' %d failing');
|
|
2598
2610
|
|
|
2599
|
-
|
|
2611
|
+
Base.consoleLog(fmt, stats.failures);
|
|
2600
2612
|
|
|
2601
2613
|
Base.list(this.failures);
|
|
2602
|
-
|
|
2614
|
+
Base.consoleLog();
|
|
2603
2615
|
}
|
|
2604
2616
|
|
|
2605
|
-
|
|
2617
|
+
Base.consoleLog();
|
|
2606
2618
|
};
|
|
2607
2619
|
|
|
2608
2620
|
/**
|
|
@@ -2755,6 +2767,8 @@ function sameType(a, b) {
|
|
|
2755
2767
|
return objToString.call(a) === objToString.call(b);
|
|
2756
2768
|
}
|
|
2757
2769
|
|
|
2770
|
+
Base.consoleLog = consoleLog;
|
|
2771
|
+
|
|
2758
2772
|
Base.abstract = true;
|
|
2759
2773
|
|
|
2760
2774
|
}).call(this,require('_process'))
|
|
@@ -2805,41 +2819,45 @@ function Doc(runner, options) {
|
|
|
2805
2819
|
return;
|
|
2806
2820
|
}
|
|
2807
2821
|
++indents;
|
|
2808
|
-
|
|
2822
|
+
Base.consoleLog('%s<section class="suite">', indent());
|
|
2809
2823
|
++indents;
|
|
2810
|
-
|
|
2811
|
-
|
|
2824
|
+
Base.consoleLog('%s<h1>%s</h1>', indent(), utils.escape(suite.title));
|
|
2825
|
+
Base.consoleLog('%s<dl>', indent());
|
|
2812
2826
|
});
|
|
2813
2827
|
|
|
2814
2828
|
runner.on(EVENT_SUITE_END, function(suite) {
|
|
2815
2829
|
if (suite.root) {
|
|
2816
2830
|
return;
|
|
2817
2831
|
}
|
|
2818
|
-
|
|
2832
|
+
Base.consoleLog('%s</dl>', indent());
|
|
2819
2833
|
--indents;
|
|
2820
|
-
|
|
2834
|
+
Base.consoleLog('%s</section>', indent());
|
|
2821
2835
|
--indents;
|
|
2822
2836
|
});
|
|
2823
2837
|
|
|
2824
2838
|
runner.on(EVENT_TEST_PASS, function(test) {
|
|
2825
|
-
|
|
2839
|
+
Base.consoleLog('%s <dt>%s</dt>', indent(), utils.escape(test.title));
|
|
2826
2840
|
var code = utils.escape(utils.clean(test.body));
|
|
2827
|
-
|
|
2841
|
+
Base.consoleLog('%s <dd><pre><code>%s</code></pre></dd>', indent(), code);
|
|
2828
2842
|
});
|
|
2829
2843
|
|
|
2830
2844
|
runner.on(EVENT_TEST_FAIL, function(test, err) {
|
|
2831
|
-
|
|
2845
|
+
Base.consoleLog(
|
|
2832
2846
|
'%s <dt class="error">%s</dt>',
|
|
2833
2847
|
indent(),
|
|
2834
2848
|
utils.escape(test.title)
|
|
2835
2849
|
);
|
|
2836
2850
|
var code = utils.escape(utils.clean(test.body));
|
|
2837
|
-
|
|
2851
|
+
Base.consoleLog(
|
|
2838
2852
|
'%s <dd class="error"><pre><code>%s</code></pre></dd>',
|
|
2839
2853
|
indent(),
|
|
2840
2854
|
code
|
|
2841
2855
|
);
|
|
2842
|
-
|
|
2856
|
+
Base.consoleLog(
|
|
2857
|
+
'%s <dd class="error">%s</dd>',
|
|
2858
|
+
indent(),
|
|
2859
|
+
utils.escape(err)
|
|
2860
|
+
);
|
|
2843
2861
|
});
|
|
2844
2862
|
}
|
|
2845
2863
|
|
|
@@ -2917,7 +2935,7 @@ function Dot(runner, options) {
|
|
|
2917
2935
|
});
|
|
2918
2936
|
|
|
2919
2937
|
runner.once(EVENT_RUN_END, function() {
|
|
2920
|
-
|
|
2938
|
+
process.stdout.write('\n');
|
|
2921
2939
|
self.epilogue();
|
|
2922
2940
|
});
|
|
2923
2941
|
}
|
|
@@ -3677,7 +3695,7 @@ function Landing(runner, options) {
|
|
|
3677
3695
|
|
|
3678
3696
|
runner.once(EVENT_RUN_END, function() {
|
|
3679
3697
|
cursor.show();
|
|
3680
|
-
|
|
3698
|
+
process.stdout.write('\n');
|
|
3681
3699
|
self.epilogue();
|
|
3682
3700
|
});
|
|
3683
3701
|
}
|
|
@@ -3735,7 +3753,7 @@ function List(runner, options) {
|
|
|
3735
3753
|
var n = 0;
|
|
3736
3754
|
|
|
3737
3755
|
runner.on(EVENT_RUN_BEGIN, function() {
|
|
3738
|
-
|
|
3756
|
+
Base.consoleLog();
|
|
3739
3757
|
});
|
|
3740
3758
|
|
|
3741
3759
|
runner.on(EVENT_TEST_BEGIN, function(test) {
|
|
@@ -3744,7 +3762,7 @@ function List(runner, options) {
|
|
|
3744
3762
|
|
|
3745
3763
|
runner.on(EVENT_TEST_PENDING, function(test) {
|
|
3746
3764
|
var fmt = color('checkmark', ' -') + color('pending', ' %s');
|
|
3747
|
-
|
|
3765
|
+
Base.consoleLog(fmt, test.fullTitle());
|
|
3748
3766
|
});
|
|
3749
3767
|
|
|
3750
3768
|
runner.on(EVENT_TEST_PASS, function(test) {
|
|
@@ -3753,12 +3771,12 @@ function List(runner, options) {
|
|
|
3753
3771
|
color('pass', ' %s: ') +
|
|
3754
3772
|
color(test.speed, '%dms');
|
|
3755
3773
|
cursor.CR();
|
|
3756
|
-
|
|
3774
|
+
Base.consoleLog(fmt, test.fullTitle(), test.duration);
|
|
3757
3775
|
});
|
|
3758
3776
|
|
|
3759
3777
|
runner.on(EVENT_TEST_FAIL, function(test) {
|
|
3760
3778
|
cursor.CR();
|
|
3761
|
-
|
|
3779
|
+
Base.consoleLog(color('fail', ' %d) %s'), ++n, test.fullTitle());
|
|
3762
3780
|
});
|
|
3763
3781
|
|
|
3764
3782
|
runner.once(EVENT_RUN_END, self.epilogue.bind(self));
|
|
@@ -4286,7 +4304,7 @@ function Progress(runner, options) {
|
|
|
4286
4304
|
|
|
4287
4305
|
// tests started
|
|
4288
4306
|
runner.on(EVENT_RUN_BEGIN, function() {
|
|
4289
|
-
|
|
4307
|
+
process.stdout.write('\n');
|
|
4290
4308
|
cursor.hide();
|
|
4291
4309
|
});
|
|
4292
4310
|
|
|
@@ -4319,7 +4337,7 @@ function Progress(runner, options) {
|
|
|
4319
4337
|
// and the failures if any
|
|
4320
4338
|
runner.once(EVENT_RUN_END, function() {
|
|
4321
4339
|
cursor.show();
|
|
4322
|
-
|
|
4340
|
+
process.stdout.write('\n');
|
|
4323
4341
|
self.epilogue();
|
|
4324
4342
|
});
|
|
4325
4343
|
}
|
|
@@ -4381,24 +4399,24 @@ function Spec(runner, options) {
|
|
|
4381
4399
|
}
|
|
4382
4400
|
|
|
4383
4401
|
runner.on(EVENT_RUN_BEGIN, function() {
|
|
4384
|
-
|
|
4402
|
+
Base.consoleLog();
|
|
4385
4403
|
});
|
|
4386
4404
|
|
|
4387
4405
|
runner.on(EVENT_SUITE_BEGIN, function(suite) {
|
|
4388
4406
|
++indents;
|
|
4389
|
-
|
|
4407
|
+
Base.consoleLog(color('suite', '%s%s'), indent(), suite.title);
|
|
4390
4408
|
});
|
|
4391
4409
|
|
|
4392
4410
|
runner.on(EVENT_SUITE_END, function() {
|
|
4393
4411
|
--indents;
|
|
4394
4412
|
if (indents === 1) {
|
|
4395
|
-
|
|
4413
|
+
Base.consoleLog();
|
|
4396
4414
|
}
|
|
4397
4415
|
});
|
|
4398
4416
|
|
|
4399
4417
|
runner.on(EVENT_TEST_PENDING, function(test) {
|
|
4400
4418
|
var fmt = indent() + color('pending', ' - %s');
|
|
4401
|
-
|
|
4419
|
+
Base.consoleLog(fmt, test.title);
|
|
4402
4420
|
});
|
|
4403
4421
|
|
|
4404
4422
|
runner.on(EVENT_TEST_PASS, function(test) {
|
|
@@ -4408,19 +4426,19 @@ function Spec(runner, options) {
|
|
|
4408
4426
|
indent() +
|
|
4409
4427
|
color('checkmark', ' ' + Base.symbols.ok) +
|
|
4410
4428
|
color('pass', ' %s');
|
|
4411
|
-
|
|
4429
|
+
Base.consoleLog(fmt, test.title);
|
|
4412
4430
|
} else {
|
|
4413
4431
|
fmt =
|
|
4414
4432
|
indent() +
|
|
4415
4433
|
color('checkmark', ' ' + Base.symbols.ok) +
|
|
4416
4434
|
color('pass', ' %s') +
|
|
4417
4435
|
color(test.speed, ' (%dms)');
|
|
4418
|
-
|
|
4436
|
+
Base.consoleLog(fmt, test.title, test.duration);
|
|
4419
4437
|
}
|
|
4420
4438
|
});
|
|
4421
4439
|
|
|
4422
4440
|
runner.on(EVENT_TEST_FAIL, function(test) {
|
|
4423
|
-
|
|
4441
|
+
Base.consoleLog(indent() + color('fail', ' %d) %s'), ++n, test.title);
|
|
4424
4442
|
});
|
|
4425
4443
|
|
|
4426
4444
|
runner.once(EVENT_RUN_END, self.epilogue.bind(self));
|
|
@@ -4877,7 +4895,7 @@ XUnit.prototype.write = function(line) {
|
|
|
4877
4895
|
} else if (typeof process === 'object' && process.stdout) {
|
|
4878
4896
|
process.stdout.write(line + '\n');
|
|
4879
4897
|
} else {
|
|
4880
|
-
|
|
4898
|
+
Base.consoleLog(line);
|
|
4881
4899
|
}
|
|
4882
4900
|
};
|
|
4883
4901
|
|
|
@@ -5596,7 +5614,7 @@ function Runner(suite, delay) {
|
|
|
5596
5614
|
});
|
|
5597
5615
|
this._defaultGrep = /.*/;
|
|
5598
5616
|
this.grep(this._defaultGrep);
|
|
5599
|
-
this.globals(this.globalProps()
|
|
5617
|
+
this.globals(this.globalProps());
|
|
5600
5618
|
}
|
|
5601
5619
|
|
|
5602
5620
|
/**
|
|
@@ -6471,30 +6489,6 @@ function thrown2Error(err) {
|
|
|
6471
6489
|
);
|
|
6472
6490
|
}
|
|
6473
6491
|
|
|
6474
|
-
/**
|
|
6475
|
-
* Array of globals dependent on the environment.
|
|
6476
|
-
*
|
|
6477
|
-
* @return {Array}
|
|
6478
|
-
* @deprecated
|
|
6479
|
-
* @todo remove; long since unsupported
|
|
6480
|
-
* @private
|
|
6481
|
-
*/
|
|
6482
|
-
function extraGlobals() {
|
|
6483
|
-
if (typeof process === 'object' && typeof process.version === 'string') {
|
|
6484
|
-
var parts = process.version.split('.');
|
|
6485
|
-
var nodeVersion = parts.reduce(function(a, v) {
|
|
6486
|
-
return (a << 8) | v;
|
|
6487
|
-
});
|
|
6488
|
-
|
|
6489
|
-
// 'errno' was renamed to process._errno in v0.9.11.
|
|
6490
|
-
if (nodeVersion < 0x00090b) {
|
|
6491
|
-
return ['errno'];
|
|
6492
|
-
}
|
|
6493
|
-
}
|
|
6494
|
-
|
|
6495
|
-
return [];
|
|
6496
|
-
}
|
|
6497
|
-
|
|
6498
6492
|
Runner.constants = constants;
|
|
6499
6493
|
|
|
6500
6494
|
/**
|
|
@@ -7854,32 +7848,41 @@ function isHiddenOnUnix(pathname) {
|
|
|
7854
7848
|
*
|
|
7855
7849
|
* @public
|
|
7856
7850
|
* @memberof Mocha.utils
|
|
7857
|
-
* @todo Fix extension handling
|
|
7858
7851
|
* @param {string} filepath - Base path to start searching from.
|
|
7859
|
-
* @param {string[]} extensions - File extensions to look for.
|
|
7860
|
-
* @param {boolean} recursive - Whether to recurse into subdirectories.
|
|
7852
|
+
* @param {string[]} [extensions=[]] - File extensions to look for.
|
|
7853
|
+
* @param {boolean} [recursive=false] - Whether to recurse into subdirectories.
|
|
7861
7854
|
* @return {string[]} An array of paths.
|
|
7862
7855
|
* @throws {Error} if no files match pattern.
|
|
7863
7856
|
* @throws {TypeError} if `filepath` is directory and `extensions` not provided.
|
|
7864
7857
|
*/
|
|
7865
7858
|
exports.lookupFiles = function lookupFiles(filepath, extensions, recursive) {
|
|
7859
|
+
extensions = extensions || [];
|
|
7860
|
+
recursive = recursive || false;
|
|
7866
7861
|
var files = [];
|
|
7867
7862
|
var stat;
|
|
7868
7863
|
|
|
7869
7864
|
if (!fs.existsSync(filepath)) {
|
|
7870
|
-
|
|
7871
|
-
|
|
7865
|
+
var pattern;
|
|
7866
|
+
if (glob.hasMagic(filepath)) {
|
|
7867
|
+
// Handle glob as is without extensions
|
|
7868
|
+
pattern = filepath;
|
|
7872
7869
|
} else {
|
|
7873
|
-
//
|
|
7874
|
-
|
|
7875
|
-
|
|
7876
|
-
|
|
7877
|
-
|
|
7878
|
-
|
|
7879
|
-
|
|
7880
|
-
|
|
7881
|
-
|
|
7870
|
+
// glob pattern e.g. 'filepath+(.js|.ts)'
|
|
7871
|
+
var strExtensions = extensions
|
|
7872
|
+
.map(function(v) {
|
|
7873
|
+
return '.' + v;
|
|
7874
|
+
})
|
|
7875
|
+
.join('|');
|
|
7876
|
+
pattern = filepath + '+(' + strExtensions + ')';
|
|
7877
|
+
}
|
|
7878
|
+
files = glob.sync(pattern, {nodir: true});
|
|
7879
|
+
if (!files.length) {
|
|
7880
|
+
throw createNoFilesMatchPatternError(
|
|
7881
|
+
'Cannot find any files matching pattern ' + exports.dQuote(filepath),
|
|
7882
|
+
filepath
|
|
7883
|
+
);
|
|
7882
7884
|
}
|
|
7885
|
+
return files;
|
|
7883
7886
|
}
|
|
7884
7887
|
|
|
7885
7888
|
// Handle file
|
|
@@ -7910,7 +7913,7 @@ exports.lookupFiles = function lookupFiles(filepath, extensions, recursive) {
|
|
|
7910
7913
|
// ignore error
|
|
7911
7914
|
return;
|
|
7912
7915
|
}
|
|
7913
|
-
if (!extensions) {
|
|
7916
|
+
if (!extensions.length) {
|
|
7914
7917
|
throw createMissingArgumentError(
|
|
7915
7918
|
util.format(
|
|
7916
7919
|
'Argument %s required when argument %s is a directory',
|
|
@@ -8006,7 +8009,8 @@ exports.stackTraceFilter = function() {
|
|
|
8006
8009
|
function isMochaInternal(line) {
|
|
8007
8010
|
return (
|
|
8008
8011
|
~line.indexOf('node_modules' + slash + 'mocha' + slash) ||
|
|
8009
|
-
~line.indexOf(slash + 'mocha.js')
|
|
8012
|
+
~line.indexOf(slash + 'mocha.js') ||
|
|
8013
|
+
~line.indexOf(slash + 'mocha.min.js')
|
|
8010
8014
|
);
|
|
8011
8015
|
}
|
|
8012
8016
|
|
|
@@ -18069,7 +18073,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
18069
18073
|
},{"./support/isBuffer":88,"_process":69,"inherits":56}],90:[function(require,module,exports){
|
|
18070
18074
|
module.exports={
|
|
18071
18075
|
"name": "mocha",
|
|
18072
|
-
"version": "6.1
|
|
18076
|
+
"version": "6.2.1",
|
|
18073
18077
|
"homepage": "https://mochajs.org/",
|
|
18074
18078
|
"notifyLogo": "https://ibin.co/4QuRuGjXvl36.png"
|
|
18075
18079
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mocha",
|
|
3
|
-
"version": "6.1
|
|
3
|
+
"version": "6.2.1",
|
|
4
4
|
"description": "simple, flexible, fun test framework",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mocha",
|
|
@@ -75,8 +75,10 @@
|
|
|
75
75
|
"Berker Peksag <berker.peksag@gmail.com>",
|
|
76
76
|
"berni <berni@extensa.pl>",
|
|
77
77
|
"Bjørge Næss <bjoerge@origo.no>",
|
|
78
|
+
"Bjorn Stromberg <bjorn@bjornstar.com>",
|
|
78
79
|
"Brendan Nee <brendan.nee@gmail.com>",
|
|
79
80
|
"Brian Beck <exogen@gmail.com>",
|
|
81
|
+
"Brian Lagerman <49239617+brian-lagerman@users.noreply.github.com>",
|
|
80
82
|
"Brian Lalor <blalor@bravo5.org>",
|
|
81
83
|
"Brian M. Carlson <brian.m.carlson@gmail.com>",
|
|
82
84
|
"Brian Moore <guardbionic-github@yahoo.com>",
|
|
@@ -110,6 +112,7 @@
|
|
|
110
112
|
"Cory Thomas <cory.thomas@bazaarvoice.com>",
|
|
111
113
|
"Craig Taub <craigtaub@gmail.com>",
|
|
112
114
|
"Cube <maty21@gmail.com>",
|
|
115
|
+
"Daniel Ruf <827205+DanielRuf@users.noreply.github.com>",
|
|
113
116
|
"Daniel Ruf <daniel@daniel-ruf.de>",
|
|
114
117
|
"Daniel St. Jules <danielst.jules@gmail.com>",
|
|
115
118
|
"Daniel Stockman <daniel.stockman@gmail.com>",
|
|
@@ -127,6 +130,7 @@
|
|
|
127
130
|
"Di Wu <dwu@palantir.com>",
|
|
128
131
|
"Dina Berry <dfberry@users.noreply.github.com>",
|
|
129
132
|
"Diogo Monteiro <diogo.gmt@gmail.com>",
|
|
133
|
+
"Dmitrii Sorin <info@staypositive.ru>",
|
|
130
134
|
"Dmitriy Simushev <simushevds@gmail.com>",
|
|
131
135
|
"Dmitry Shirokov <deadrunk@gmail.com>",
|
|
132
136
|
"Dmitry Sorin <info@staypositive.ru>",
|
|
@@ -162,6 +166,7 @@
|
|
|
162
166
|
"Fredrik Enestad <fredrik@devloop.se>",
|
|
163
167
|
"Fredrik Lindin <fredriklindin@gmail.com>",
|
|
164
168
|
"Fumiaki MATSUSHIMA <mtsmfm@gmail.com>",
|
|
169
|
+
"Gabe Gorelick <gabegorelick@gmail.com>",
|
|
165
170
|
"Gabriel Silk <gabesilk@gmail.com>",
|
|
166
171
|
"Gareth Aye <gaye@mozilla.com>",
|
|
167
172
|
"Gareth Murphy <gareth.cpm@gmail.com>",
|
|
@@ -290,6 +295,7 @@
|
|
|
290
295
|
"Marc Kuo <kuomarc2@gmail.com>",
|
|
291
296
|
"Marc Udoff <mlucool@gmail.com>",
|
|
292
297
|
"Marcello Bastea-Forte <marcello@cellosoft.com>",
|
|
298
|
+
"Mario Díaz Ceñera <46492068+MarioDiaz98@users.noreply.github.com>",
|
|
293
299
|
"Mark Banner <standard8@mozilla.com>",
|
|
294
300
|
"Mark Owsiak <mark.owsiak@gmail.com>",
|
|
295
301
|
"Markus Tacker <m@coderbyheart.com>",
|
|
@@ -334,6 +340,7 @@
|
|
|
334
340
|
"Noshir Patel <nosh@blackpiano.com>",
|
|
335
341
|
"not-an-aardvark <not-an-aardvark@users.noreply.github.com>",
|
|
336
342
|
"OlegTsyba <oleg.tsyba.ua@gmail.com>",
|
|
343
|
+
"Oliver Salzburg <oliver.salzburg@gmail.com>",
|
|
337
344
|
"olsonpm <olsonpm@users.noreply.github.com>",
|
|
338
345
|
"omardelarosa <thedelarosa@gmail.com>",
|
|
339
346
|
"Oscar Godson <oscargodson@outlook.com>",
|
|
@@ -342,6 +349,7 @@
|
|
|
342
349
|
"P. Roebuck <plroebuck@users.noreply.github.com>",
|
|
343
350
|
"Panu Horsmalahti <panu.horsmalahti@iki.fi>",
|
|
344
351
|
"Parker Moore <parkrmoore@gmail.com>",
|
|
352
|
+
"Pascal <pascal@pascal.com>",
|
|
345
353
|
"Pat Finnigan <patrick.k.finnigan@gmail.com>",
|
|
346
354
|
"Paul Armstrong <paul@paularmstrongdesigns.com>",
|
|
347
355
|
"Paul Miller <paul@paulmillr.com>",
|
|
@@ -352,6 +360,7 @@
|
|
|
352
360
|
"Peter Rust <peter@cornerstonenw.com>",
|
|
353
361
|
"Phil Sung <psung@dnanexus.com>",
|
|
354
362
|
"Philip M. White <philip@mailworks.org>",
|
|
363
|
+
"Piotr Kuczynski <piotr.kuczynski@gmail.com>",
|
|
355
364
|
"PoppinL <poppinlp@gmail.com>",
|
|
356
365
|
"Poprádi Árpád <popradi.arpad11@gmail.com>",
|
|
357
366
|
"Prayag Verma <prayag.verma@gmail.com>",
|
|
@@ -413,6 +422,7 @@
|
|
|
413
422
|
"Sorin Iclanzan <sorin@iclanzan.com>",
|
|
414
423
|
"Standa Opichal <opichals@gmail.com>",
|
|
415
424
|
"startswithaj <jake.mc@icloud.com>",
|
|
425
|
+
"Stephen Hess <trescube@users.noreply.github.com>",
|
|
416
426
|
"Stephen Mathieson <smath23@gmail.com>",
|
|
417
427
|
"Steve Mason <stevem@brandwatch.com>",
|
|
418
428
|
"Stewart Taylor <stewart.taylor1@gmail.com>",
|
|
@@ -421,6 +431,7 @@
|
|
|
421
431
|
"Sune Simonsen <sune@we-knowhow.dk>",
|
|
422
432
|
"Svetlana <39729453+Lana-Light@users.noreply.github.com>",
|
|
423
433
|
"Sylvain <sstephant+github@gmail.com>",
|
|
434
|
+
"Sylvester Keil <sylvester@keil.or.at>",
|
|
424
435
|
"Szauka <33459309+Szauka@users.noreply.github.com>",
|
|
425
436
|
"Tapiwa Kelvin <tapiwa@munzwa.tk>",
|
|
426
437
|
"Ted Yavuzkurt <hello@TedY.io>",
|
|
@@ -429,6 +440,7 @@
|
|
|
429
440
|
"Thedark1337 <thedark1337@thedark1337.com>",
|
|
430
441
|
"Thomas Broadley <buriedunderbooks@hotmail.com>",
|
|
431
442
|
"Thomas Grainger <tagrain@gmail.com>",
|
|
443
|
+
"Thomas Scholtes <thomas-scholtes@gmx.de>",
|
|
432
444
|
"Thomas Vantuycom <thomasvantuycom@protonmail.com>",
|
|
433
445
|
"Tim Ehat <timehat@gmail.com>",
|
|
434
446
|
"Tim Harshman <goteamtim+git@gmail.com>",
|
|
@@ -442,6 +454,7 @@
|
|
|
442
454
|
"Tom Coquereau <tom@thau.me>",
|
|
443
455
|
"Tom Hughes <tom@compton.nu>",
|
|
444
456
|
"Tomer Eskenazi <tomer.eskenazi@ironsrc.com>",
|
|
457
|
+
"toyjhlee <toyjhlee@gmail.com>",
|
|
445
458
|
"traleig1 <darkphoenix739@gmail.com>",
|
|
446
459
|
"Travis Jeffery <tj@travisjeffery.com>",
|
|
447
460
|
"tripu <t@tripu.info>",
|
|
@@ -511,27 +524,27 @@
|
|
|
511
524
|
"glob": "7.1.3",
|
|
512
525
|
"growl": "1.10.5",
|
|
513
526
|
"he": "1.2.0",
|
|
514
|
-
"js-yaml": "3.13.
|
|
527
|
+
"js-yaml": "3.13.1",
|
|
515
528
|
"log-symbols": "2.2.0",
|
|
516
529
|
"minimatch": "3.0.4",
|
|
517
530
|
"mkdirp": "0.5.1",
|
|
518
531
|
"ms": "2.1.1",
|
|
519
|
-
"node-environment-flags": "1.0.
|
|
532
|
+
"node-environment-flags": "1.0.5",
|
|
520
533
|
"object.assign": "4.1.0",
|
|
521
534
|
"strip-json-comments": "2.0.1",
|
|
522
535
|
"supports-color": "6.0.0",
|
|
523
536
|
"which": "1.3.1",
|
|
524
537
|
"wide-align": "1.1.3",
|
|
525
|
-
"yargs": "13.
|
|
526
|
-
"yargs-parser": "13.
|
|
527
|
-
"yargs-unparser": "1.
|
|
538
|
+
"yargs": "13.3.0",
|
|
539
|
+
"yargs-parser": "13.1.1",
|
|
540
|
+
"yargs-unparser": "1.6.0"
|
|
528
541
|
},
|
|
529
542
|
"devDependencies": {
|
|
530
|
-
"@11ty/eleventy": "^0.
|
|
531
|
-
"@mocha/contributors": "^1.0.
|
|
532
|
-
"@mocha/docdash": "^2.1.
|
|
533
|
-
"assetgraph-builder": "^6.10.
|
|
534
|
-
"autoprefixer": "^9.
|
|
543
|
+
"@11ty/eleventy": "^0.8.3",
|
|
544
|
+
"@mocha/contributors": "^1.0.4",
|
|
545
|
+
"@mocha/docdash": "^2.1.1",
|
|
546
|
+
"assetgraph-builder": "^6.10.1",
|
|
547
|
+
"autoprefixer": "^9.6.0",
|
|
535
548
|
"browserify": "^16.2.3",
|
|
536
549
|
"browserify-package-json": "^1.0.1",
|
|
537
550
|
"chai": "^4.2.0",
|
|
@@ -539,48 +552,49 @@
|
|
|
539
552
|
"coveralls": "^3.0.3",
|
|
540
553
|
"cross-env": "^5.2.0",
|
|
541
554
|
"cross-spawn": "^6.0.5",
|
|
542
|
-
"eslint": "^5.
|
|
555
|
+
"eslint": "^5.16.0",
|
|
543
556
|
"eslint-config-prettier": "^3.6.0",
|
|
544
557
|
"eslint-config-semistandard": "^13.0.0",
|
|
545
558
|
"eslint-config-standard": "^12.0.0",
|
|
546
|
-
"eslint-plugin-import": "^2.
|
|
559
|
+
"eslint-plugin-import": "^2.17.3",
|
|
547
560
|
"eslint-plugin-node": "^8.0.1",
|
|
548
|
-
"eslint-plugin-prettier": "^3.0
|
|
549
|
-
"eslint-plugin-promise": "^4.
|
|
561
|
+
"eslint-plugin-prettier": "^3.1.0",
|
|
562
|
+
"eslint-plugin-promise": "^4.1.1",
|
|
550
563
|
"eslint-plugin-standard": "^4.0.0",
|
|
564
|
+
"fs-extra": "^8.0.1",
|
|
551
565
|
"husky": "^1.3.1",
|
|
552
|
-
"jsdoc": "^3.
|
|
553
|
-
"karma": "^4.0
|
|
566
|
+
"jsdoc": "^3.6.2",
|
|
567
|
+
"karma": "^4.1.0",
|
|
554
568
|
"karma-browserify": "^6.0.0",
|
|
555
569
|
"karma-chrome-launcher": "^2.2.0",
|
|
556
570
|
"karma-mocha": "^1.3.0",
|
|
557
571
|
"karma-mocha-reporter": "^2.2.5",
|
|
558
572
|
"karma-sauce-launcher": "^2.0.2",
|
|
559
|
-
"lint-staged": "^8.1.
|
|
573
|
+
"lint-staged": "^8.1.7",
|
|
560
574
|
"markdown-it": "^8.4.2",
|
|
561
|
-
"markdown-it-anchor": "^5.
|
|
562
|
-
"markdown-it-attrs": "^2.
|
|
563
|
-
"markdown-it-prism": "^2.0.
|
|
575
|
+
"markdown-it-anchor": "^5.2.4",
|
|
576
|
+
"markdown-it-attrs": "^2.4.1",
|
|
577
|
+
"markdown-it-prism": "^2.0.2",
|
|
564
578
|
"markdown-magic": "^0.1.25",
|
|
565
579
|
"markdown-magic-package-json": "^2.0.0",
|
|
566
580
|
"markdown-toc": "^1.2.0",
|
|
567
581
|
"markdownlint-cli": "^0.14.1",
|
|
568
|
-
"nps": "^5.9.
|
|
569
|
-
"nyc": "^
|
|
570
|
-
"prettier": "^1.
|
|
582
|
+
"nps": "^5.9.5",
|
|
583
|
+
"nyc": "^14.1.1",
|
|
584
|
+
"prettier": "^1.17.1",
|
|
571
585
|
"remark": "^10.0.1",
|
|
572
586
|
"remark-github": "^7.0.6",
|
|
573
587
|
"remark-inline-links": "^3.1.2",
|
|
574
|
-
"rewiremock": "^3.13.
|
|
588
|
+
"rewiremock": "^3.13.7",
|
|
575
589
|
"rimraf": "^2.6.3",
|
|
576
|
-
"sinon": "^7.2
|
|
577
|
-
"strip-ansi": "^5.
|
|
578
|
-
"svgo": "^1.2.
|
|
590
|
+
"sinon": "^7.3.2",
|
|
591
|
+
"strip-ansi": "^5.2.0",
|
|
592
|
+
"svgo": "^1.2.2",
|
|
579
593
|
"through2": "^3.0.1",
|
|
580
|
-
"to-vfile": "^5.0.
|
|
594
|
+
"to-vfile": "^5.0.3",
|
|
581
595
|
"unexpected": "^10.40.2",
|
|
582
596
|
"unexpected-eventemitter": "^1.1.3",
|
|
583
|
-
"unexpected-sinon": "^10.11.
|
|
597
|
+
"unexpected-sinon": "^10.11.2",
|
|
584
598
|
"uslug": "^1.0.4",
|
|
585
599
|
"watchify": "^3.11.1"
|
|
586
600
|
},
|