16 строки
471 B
JavaScript
16 строки
471 B
JavaScript
/**
|
|
* Common dev dependencies constants
|
|
* @module dev-dependencies-constants
|
|
*/
|
|
|
|
/** Target mocha version for running tests */
|
|
exports.MOCHA_TARGET_VERSION = '6.2.3';
|
|
/** Minimum supported typescript version */
|
|
exports.TSC_MIN_VERSION = '3.6.3';
|
|
/** Current typescript version */
|
|
exports.TSC_CURRENT_VERSION = '4.0.2';
|
|
/** Minimum supported node version */
|
|
exports.NODE_MIN_VERSION = '10.0.0';
|
|
/** Minimum supported npm version */
|
|
exports.NPM_MIN_VERSION = '5.6.0';
|