diff --git a/package.json b/package.json index c99577b5..4ada1202 100644 --- a/package.json +++ b/package.json @@ -1,23 +1,24 @@ { "name": "function-schemata", "version": "1.0.0", "description": "", "main": "schema.js", "directories": { "test": "test" }, "scripts": { - "test": "eslint --cache --max-warnings 0 --ext .js,.json && qunit" + "lint": "eslint --cache --max-warnings 0 --ext .js,.json", + "test": "npm run lint && qunit" }, "author": "", "license": "MIT", "dependencies": { "ajv": "8.6.2", "yaml": "1.10.0" }, "devDependencies": { "eslint": "7.25.0", "eslint-config-wikimedia": "0.20.0", "qunit": "2.16.0" } }