md-generator
Version:
NPM Package which bootstraps Development by creating all required .md files to meet community standards.
50 lines (49 loc) • 1.14 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.packageJson = {
author: {
name: 'testAuthorName'
}
};
exports.packageJsonWithStringAuthor = {
author: 'testAuthor'
};
exports.packageJsonWithNullAuthor = {
author: null
};
exports.questionResponse1 = {
type: 'input',
name: 'string',
message: 'string',
default: undefined,
filter: 'filter',
choices: 'choices',
when: function () { return true; }
};
exports.questionResponse2 = {
type: 'checkbox',
name: 'string',
message: 'string',
default: undefined,
filter: 'filter',
choices: [{ checked: true, value: true }, { checked: false }],
when: function () { return true; }
};
exports.questionResponse3 = {
type: 'type',
name: 'string',
message: 'string',
default: 'true',
filter: 'filter',
choices: 'choices',
when: function () { return true; }
};
exports.questionResponse4 = {
type: 'type',
name: 'string',
message: 'string',
default: 'true',
filter: 'filter',
choices: 'choices',
when: function () { return false; }
};