From 54c2ccb85db682fc293b30a0bfece76d0a5c7c60 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Tue, 30 May 2017 13:13:27 -0700 Subject: [PATCH] [Tests] add `npm run lint` --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index e064bfe..8468965 100644 --- a/package.json +++ b/package.json @@ -6,10 +6,14 @@ "dependencies": {}, "devDependencies": { "@es-shims/api": "^1.2.0", + "@ljharb/eslint-config": "^11.0.0", + "eslint": "^3.19.0", "safe-publish-latest": "^1.1.1" }, "scripts": { "prepublish": "safe-publish-latest", + "lint": "eslint .", + "pretest": "npm run lint", "tests-only": "es-shim-api", "test": "npm run tests-only" },