From 005d5327e49cd271fe84382d18df7019dc3f73ad Mon Sep 17 00:00:00 2001 From: Grant Timmerman Date: Wed, 29 Apr 2020 13:36:21 -0700 Subject: [PATCH] chore: add npm fix command (#74) * feat: add npm fix command Signed-off-by: Grant Timmerman * feat: add npm fix command Signed-off-by: Grant Timmerman --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 9056ab4..8f52a79 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "main": "index.js", "scripts": { "lint": "standardx", + "fix": "standardx --fix", "pretest": "npm run lint", "test": "mocha test/**/*.js", "coverage": "nyc --reporter=lcov --reporter=text npm run test",