From 108f6c038296a6e7da005d536066ae83c47eda88 Mon Sep 17 00:00:00 2001 From: Evan Date: Mon, 22 Jun 2020 12:43:38 -0600 Subject: [PATCH] Migrate Linting to ESMTK --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 92154ee..aae048c 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "main": "index.js", "scripts": { "start": "npx live-server --no-browser --port=5500 --open=dev", - "lint": "semistandard", + "lint": "esmtk lint", "build": "npm run build:main && npm run build:min", "build:main": "npx rollup --config .config/main.config.js", "build:min": "npx rollup --config .config/min.config.js", @@ -22,7 +22,7 @@ "postversion": "git push --follow-tags" }, "devDependencies": { - "rollup-plugin-terser": "^5.2.0", - "semistandard": "^14.2.0" + "esmtk": "^0.1.1", + "rollup-plugin-terser": "^5.2.0" } }