From 719fdcd99e1a82c46b78cd2f83b3ea1ad7521aa6 Mon Sep 17 00:00:00 2001 From: delvedor Date: Wed, 2 Sep 2020 16:54:55 +0200 Subject: [PATCH] Fix typo --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ab2797086..ae758b90d 100644 --- a/package.json +++ b/package.json @@ -33,9 +33,9 @@ "test:coverage-100": "tap test/{unit,acceptance}/{*,**/*}.test.js --coverage --100 --nyc-arg=\"--exclude=api\"", "test:coverage-report": "tap test/{unit,acceptance}/{*,**/*}.test.js --coverage --nyc-arg=\"--exclude=api\" && nyc report --reporter=text-lcov > coverage.lcov", "test:coverage-ui": "tap test/{unit,acceptance}/{*,**/*}.test.js --coverage --coverage-report=html --nyc-arg=\"--exclude=api\"", - "test:dls": "npm run lint:ts && tap --ts test/dsl/*.test.ts", + "test:dsl": "npm run lint:dsl && tap --ts test/dsl/*.test.ts", "lint": "standard", - "lint:ts": "standardx --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin dsl/src/*.ts dsl/examples/*.ts", + "lint:dsl": "standardx --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin dsl/src/*.ts dsl/examples/*.ts", "lint:fix": "standard --fix", "license-checker": "license-checker --production --onlyAllow='MIT;Apache-2.0;Apache1.1;ISC;BSD-3-Clause;BSD-2-Clause'", "build:esm": "npx gen-esm-wrapper . index.mjs && standard --fix index.mjs",