| 123456789101112131415161718192021222324252627282930 | 'use strict';module.exports = {  write: true,  prefix: '^',  plugin: 'autod-egg',  test: [    'test',    'benchmark',  ],  dep: [    'egg',    'egg-scripts',  ],  devdep: [    'egg-ci',    'egg-bin',    'egg-mock',    'autod',    'autod-egg',    'eslint',    'eslint-config-egg',    'webstorm-disable-index',  ],  exclude: [    './test/fixtures',    './dist',  ],};
 |