Skip to content

Commit

Permalink
Fix values
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel.pires committed Feb 2, 2024
1 parent dd5a7b9 commit 28765d6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"description": "A microservice for token based security authentication using express and jwt.io",
"main": "app.js",
"scripts": {
"dev": "node --experimental-modules --env-file=.env --watch ./bin/www",
"start": "node --experimental-modules --env-file=.env ./bin/www",
"test": "mocha --experimental-modules --reporter progress test/ --exit --timeout 50000",
"coverage": "nyc --experimental-modules mocha --exit --reporter progress ./test/ --timeout 50000",
"coverage:report": "nyc --experimental-modules report --reporter=lcov --reporter=text",
"report-coverage": "nyc --experimental-modules report --reporter=text-lcov > coverage.lcov"
"dev": "node --env-file=.env --watch ./bin/www",
"start": "node --env-file=.env ./bin/www",
"test": "mocha --reporter progress test/ --exit --timeout 50000",
"coverage": "nyc mocha --exit --reporter progress ./test/ --timeout 50000",
"coverage:report": "nyc report --reporter=lcov --reporter=text",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 28765d6

Please sign in to comment.