1234567891011121314151617181920212223242526272829 |
- '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',
- ],
- exclude: [
- './test/fixtures',
- './dist',
- ],
- };
|