twitch-ebs-tools
Advanced tools
Comparing version 2.0.3 to 2.0.4
{ | ||
"name": "twitch-ebs-tools", | ||
"version": "2.0.3", | ||
"version": "2.0.4", | ||
"description": "Utility functions for Twitch Extension Backend Services (EBS)", | ||
@@ -31,3 +31,4 @@ "keywords": [ | ||
"scripts": { | ||
"build": "npm run lint && npm run format && npm run test && npm run clean && npm run compile", | ||
"build": "npm run lint && npm run checkFormat && npm run test && npm run clean && npm run compile", | ||
"checkFormat": "prettier --check .", | ||
"clean": "rimraf dist/*", | ||
@@ -50,3 +51,6 @@ "clearTestCache": "jest --clearCache", | ||
"package.json": "sort-package-json", | ||
"*.ts": "eslint --cache --fix" | ||
"*.ts": [ | ||
"eslint --fix", | ||
"prettier --write ." | ||
] | ||
}, | ||
@@ -65,2 +69,3 @@ "dependencies": { | ||
"lint-staged": "^12.3.3", | ||
"prettier": "^2.5.1", | ||
"rimraf": "^3.0.2", | ||
@@ -67,0 +72,0 @@ "rollup": "^2.66.1", |
16243
17