typescript-mock-server 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/package.json +1 -3
package/README.md
CHANGED
|
@@ -91,6 +91,7 @@ Following dependencies are being used:
|
|
|
91
91
|
|
|
92
92
|
|
|
93
93
|
## Release notes (will be moved to GitHub in the future)
|
|
94
|
+
- v1.0.6 - Bugfix: accidentally included "npm" and "install" dependency, removed again
|
|
94
95
|
- v1.0.5 - Set $INIT_CWD to support all platforms and add CORS option
|
|
95
96
|
- v1.0.3 - Updated README to include delay interval example
|
|
96
97
|
- v1.0.2 - Use correct command to push tags
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typescript-mock-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Simple mock server that can be used in front end development. Instead of creating json files you can just publish TypeScript objects as json",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -38,8 +38,6 @@
|
|
|
38
38
|
"@types/node": "^18.0.5",
|
|
39
39
|
"cors": "^2.8.5",
|
|
40
40
|
"express": "^4.18.1",
|
|
41
|
-
"install": "^0.13.0",
|
|
42
|
-
"npm": "^9.1.2",
|
|
43
41
|
"ts-node-dev": "2.0.0",
|
|
44
42
|
"tslog": "^3.3.3",
|
|
45
43
|
"typescript": "^4.7.4"
|