22 lines
499 B
JavaScript
22 lines
499 B
JavaScript
const oclifConfig = {
|
|
name: 'testspec',
|
|
version: '1.0.0',
|
|
description: 'Convert natural language requirements into structured unit test cases',
|
|
author: 'TestSpec CLI Team',
|
|
bin: 'testspec',
|
|
commands: './dist/commands',
|
|
plugins: ['@oclif/plugin-help'],
|
|
topics: {
|
|
commands: {
|
|
description: 'Commands for generating and managing test cases'
|
|
}
|
|
},
|
|
oclif: {
|
|
bin: 'testspec',
|
|
dirname: 'testspec',
|
|
commands: './dist/commands'
|
|
}
|
|
};
|
|
|
|
export default oclifConfig;
|