From 284b3adeef9a40305394c8d4ab17e5edc7449201 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Ooms?= Date: Fri, 24 Apr 2020 09:14:51 +0200 Subject: [PATCH] :art: style(package.json): Run fixpack. --- package.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index b99925d..2a8b24f 100644 --- a/package.json +++ b/package.json @@ -30,20 +30,23 @@ "devDependencies": { "@aureooms/js-in-situ-sort-spec": "7.0.2", "@aureooms/js-partition": "8.0.0", - "ava": "3.7.1", - "coveralls": "3.0.14", - "esdoc": "1.1.0", - "nyc": "15.0.1", "@babel/cli": "7.8.4", "@babel/core": "7.9.0", "@babel/polyfill": "7.8.7", "@babel/preset-env": "7.9.5", "@babel/register": "7.9.0", + "ava": "3.7.1", + "coveralls": "3.0.14", + "esdoc": "1.1.0", "esdoc-inject-script-plugin": "1.0.0", "esdoc-inject-style-plugin": "1.0.0", "esdoc-standard-plugin": "1.0.0", - "np": "6.2.2" + "np": "6.2.2", + "nyc": "15.0.1" }, + "files": [ + "lib" + ], "homepage": "http://aureooms.github.io/js-quicksort", "keywords": [ "bricks", @@ -62,12 +65,9 @@ "scripts": { "build": "rm -rf lib && babel src -d lib", "cover": "nyc --reporter=lcov npm test", - "test": "ava", "esdoc": "esdoc", "prepare": "npm run build", - "release": "np" - }, - "files": [ - "lib" - ] + "release": "np", + "test": "ava" + } }