From 87ad103177f5d4ca60cc259ec5b4ce694dbf470e Mon Sep 17 00:00:00 2001 From: Futago-za Ryuu Date: Fri, 23 Mar 2018 02:38:00 +0000 Subject: [PATCH] Move nyc options to separate config --- .nycrc | 11 +++++++++++ package.json | 11 ----------- 2 files changed, 11 insertions(+), 11 deletions(-) create mode 100644 .nycrc diff --git a/.nycrc b/.nycrc new file mode 100644 index 0000000..8e97d7b --- /dev/null +++ b/.nycrc @@ -0,0 +1,11 @@ +{ + "exclude": [ + "test", + "gulpfile.js", + "**/.eslintrc.js" + ], + "reporter": [ + "text", + "text-summary" + ] +} diff --git a/package.json b/package.json index e22c7bf..5be6682 100644 --- a/package.json +++ b/package.json @@ -61,16 +61,5 @@ }, "engines": { "node": ">=4" - }, - "nyc": { - "exclude": [ - "test", - "gulpfile.js", - "**/.eslintrc.js" - ], - "reporter": [ - "text", - "text-summary" - ] } }