Ava has lot of issue, put it as devDependencies
ava has a lot of issues and is declared as a dependency whereas it is only a devDependencies for testing
put it as a devDependencies
@archana-s please resolve this ^^
This issue is actually pretty important for anyone using this module. If you look at this project's dependency tree, you'll see that having ava in dependencies instead of devDependencies causes an additional ~460 modules (30MB) to be installed. For comparison, here's the same tree with ava removed (collapsed)..
FWIW, if you're using yarn it looks like you can prevent ava from getting installed by adding the following to package.json:
"resolutions": {
"ava": ""
}
Also, note that OP has opened a PR for this issue: #9