From 1819f5042caff1af3894cfcc6e64fb5b6a9cbe75 Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Sun, 13 Nov 2022 21:40:42 +0000 Subject: [PATCH] remove npx call in package.json scripts Signed-off-by: Arthur Lu --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index c7549ea..b608888 100644 --- a/package.json +++ b/package.json @@ -5,8 +5,8 @@ "test": "mocha --recursive './{,!(node_modules)/**}/*.test.js'", "lint": "eslint '**/*.js'", "fix-style": "eslint --fix **/*.js", - "lintHTML": "npx htmlhint '**/*.html'", - "lintCSS": "npx stylelint '**/*.css'" + "lintHTML": "htmlhint '**/*.html'", + "lintCSS": "stylelint '**/*.css'" }, "devDependencies": { "eslint": "^8.27.0",