Skip to content

Commit

Permalink
Add audit, clean, watch, and test scripts to package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Jagoda11 committed Feb 11, 2024
1 parent 35f8f7a commit da41d9a
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,19 @@
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"audit": "npm audit",
"audit:fix": "npm audit fix",
"build": "tsc",
"clean": "rm -rf dist",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts"
"watch": "nodemon --exec npm run dev",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:verbose": "jest --verbose",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand",
"test:debug:watch": "node --inspect-brk ./node_modules/.bin/jest --watchAll"
},
"keywords": [],
"author": "",
Expand Down

0 comments on commit da41d9a

Please sign in to comment.