Skip to content

Commit

Permalink
fix package.json scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
gr2m committed Feb 7, 2020
1 parent 1f1af7e commit 5f1c1ad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -57,12 +57,12 @@
"tap": "^14.0.0"
},
"scripts": {
"coverage": "tap --coverage-report=html && open coverage/lcov-report/index.html",
"dtslint": "dtslint types",
"format:fix": "prettier --write '**/*.{js,json,md,ts,yml,yaml}'",
"format": "prettier --check '**/*.{js,json,md,ts,yml,yaml}'",
"lint": "eslint --cache --cache-location './.cache/eslint' '**/*.js'",
"lint:fix": "eslint --cache --cache-location './.cache/eslint' --fix '**/*.js'",
"lint": "run-p lint:js lint:ts",
"lint:js": "eslint --cache --cache-location './.cache/eslint' '**/*.js'",
"lint:js:fix": "eslint --cache --cache-location './.cache/eslint' --fix '**/*.js'",
"lint:ts": "dtslint types",
"semantic-release": "semantic-release",
"test": "run-p test:mocha test:tap",
"test:coverage": "tap --coverage-report=html && open coverage/lcov-report/index.html",
Expand Down

0 comments on commit 5f1c1ad

Please sign in to comment.