express-zod-api
Advanced tools
Comparing version 1.0.0 to 1.1.0
@@ -5,2 +5,6 @@ # Changelog | ||
### v1.1.0 | ||
- Zod version is v3.1.0. | ||
### v1.0.0 | ||
@@ -7,0 +11,0 @@ |
{ | ||
"name": "express-zod-api", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"description": "A Typescript library to help you get an API server up and running with I/O schema validation and custom middlewares in minutes.", | ||
@@ -8,6 +8,7 @@ "license": "MIT", | ||
"start": "ts-node example/index.ts", | ||
"build": "yarn build:cleanup && yarn build:compile && yarn build:swagger", | ||
"build:cleanup": "rm -rf ./dist && rm -f example/example.swagger.yaml", | ||
"build": "yarn build:cleanup && yarn build:compile && yarn build:swagger && yarn build:license", | ||
"build:cleanup": "rm -rf ./dist && rm -f example/example.swagger.yaml && rm -f ./LICENSE", | ||
"build:compile": "tsc", | ||
"build:swagger": "ts-node example/generate-open-api-schema.ts > example/example.swagger.yaml", | ||
"build:license": "ts-node generate-license.ts > ./LICENSE", | ||
"test": "yarn test:unit && yarn test:system", | ||
@@ -17,3 +18,3 @@ "test:unit": "yarn jest --verbose ./tests/unit", | ||
"lint": "yarn eslint ./src ./example ./tests", | ||
"precommit": "yarn lint && yarn test && yarn build:cleanup && yarn build:swagger && git add example/example.swagger.yaml", | ||
"precommit": "yarn lint && yarn test && yarn build && git add example/example.swagger.yaml ./LICENSE", | ||
"prepublishOnly": "yarn test && yarn build", | ||
@@ -41,3 +42,3 @@ "postversion": "git push && git push --tags", | ||
"eslint": "^7.20.0", | ||
"husky": "^5.1.1", | ||
"husky": "^6.0.0", | ||
"jest": "^26.6.3", | ||
@@ -47,3 +48,3 @@ "node-fetch": "^2.6.1", | ||
"ts-node": "^9.1.1", | ||
"tsd": "^0.15.1", | ||
"tsd": "^0.16.0", | ||
"typescript": "^4.1.5" | ||
@@ -50,0 +51,0 @@ }, |
91285