Skip to content

Commit

Permalink
fix package scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
kirgene committed Jul 27, 2022
1 parent 5c856c4 commit b71af8e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,16 @@
"start": "node src/index.js",
"audit:resolve": "npx resolve-audit --production",
"audit:check": "npx check-audit --production",
"build": "npm run build:openapi; npm run build:dto:outbound",
"build:openapi": "npm run build:openapi:inbound && npm run build:openapi:outbound",
"build": "npm run build:openapi",
"build:openapi": "npm run build:openapi:inbound",
"build:openapi:inbound": "openapi bundle --output ./src/InboundServer/api.yaml --ext yaml ./src/InboundServer/api_template.yaml",
"lint": "eslint ./src/",
"lint:fix": "eslint ./src/ --fix",
"test": "npm run test:unit",
"test:unit": "jest --runInBand --ci --reporters=default --reporters=jest-junit --env=node test/unit/",
"test:int": "jest --ci --reporters=default --reporters=jest-junit --env=node test/integration",
"validate:api": "npm run validate:api:in; npm run validate:api:out",
"validate:api": "npm run validate:api:in",
"validate:api:in": "swagger-cli validate ./src/InboundServer/api.yaml",
"validate:api:out": "swagger-cli validate ./src/OutboundServer/api.yaml",
"updates:check": "npm run dep:check",
"updates:update": "npm run dep:update && npm install",
"dep:check": "npx ncu -e 2",
Expand Down

0 comments on commit b71af8e

Please sign in to comment.