Skip to content

Commit

Permalink
chore: improved package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Mar 3, 2024
1 parent 106732b commit 3812d2e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@
},
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"pretty": "prettier --config .prettierrc \"./**/*.{js,ts,tsx,json}\" --write",
"build": "tsc -p .",
"lint": "eslint \"./**/*.{js,ts,cjs}\"",
"lint-fix": "eslint \"./**/*.{js,ts,cjs}\" --fix",
"prettier": "prettier \"./**/*.{js,ts,cjs,json}\" --write",
"pretty": "npm run prettier && npm run lint-fix",
"test": "npm run test:mocha",
"test:mocha": "mocha --require ts-node/register --recursive test",
"watch": "tsc --watch"
"watch": "tsc -p . --watch"
},
"type": "module",
"source": "index.ts",
Expand Down

0 comments on commit 3812d2e

Please sign in to comment.