mirror of
https://gitee.com/doramart/DoraCMS.git
synced 2024-12-01 19:57:39 +08:00
28 lines
342 B
JavaScript
28 lines
342 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
write: true,
|
|
prefix: '^',
|
|
plugin: 'autod-egg',
|
|
test: [
|
|
'test',
|
|
'benchmark',
|
|
],
|
|
dep: [
|
|
'egg'
|
|
],
|
|
devdep: [
|
|
'egg-ci',
|
|
'egg-bin',
|
|
'autod',
|
|
'eslint',
|
|
'eslint-config-egg',
|
|
'webstorm-disable-index',
|
|
],
|
|
exclude: [
|
|
'./test/fixtures',
|
|
'./dist',
|
|
],
|
|
};
|
|
|