apimock-rs 4.0.0-rc.15 → 4.0.0-rc.18
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 +5 -3
- package/package.json +5 -5
package/README.md
CHANGED
@@ -12,7 +12,7 @@ If you’re building or testing APIs, this tool makes mocking painless. You don
|
|
12
12
|
|
13
13
|
It’s rebuilt from the ground up in version 4. Designed to help developers of all levels.
|
14
14
|
|
15
|
-

|
15
|
+

|
16
16
|
|
17
17
|
```sh
|
18
18
|
# install
|
@@ -37,9 +37,11 @@ curl http://localhost:3001/api/v1/hello
|
|
37
37
|
npx apimock --init
|
38
38
|
```
|
39
39
|
|
40
|
-
For more details, [
|
40
|
+
For more details, check out [the docs](https://github.com/apimokka/apimock-rs/blob/main/docs/README.md).
|
41
41
|
|
42
|
-
|
42
|
+
---
|
43
|
+
|
44
|
+
## Open-source, with care
|
43
45
|
|
44
46
|
This project is lovingly built and maintained by volunteers.
|
45
47
|
We hope it helps streamline your API development.
|
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "apimock-rs",
|
3
|
-
"version": "4.0.0-rc.
|
3
|
+
"version": "4.0.0-rc.18",
|
4
4
|
"description": "HTTP server generating REST/JSON responses. Aims to be mocking helper to develop microservices and APIs.",
|
5
5
|
"author": "nabbisen<nabbisen@scqr.net>",
|
6
6
|
"license": "Apache-2.0",
|
7
7
|
"repository": {
|
8
8
|
"type": "git",
|
9
|
-
"url": "git+https://github.com/
|
9
|
+
"url": "git+https://github.com/apimokka/apimock-rs.git"
|
10
10
|
},
|
11
11
|
"bin": {
|
12
12
|
"apimock": "./index.js"
|
@@ -18,9 +18,9 @@
|
|
18
18
|
"postinstall": "node postinstall.js"
|
19
19
|
},
|
20
20
|
"optionalDependencies": {
|
21
|
-
"@apimock-rs/bin-linux-x64-gnu": "4.0.0-rc.
|
22
|
-
"@apimock-rs/bin-darwin-arm64": "4.0.0-rc.
|
23
|
-
"@apimock-rs/bin-win32-x64-msvc": "4.0.0-rc.
|
21
|
+
"@apimock-rs/bin-linux-x64-gnu": "4.0.0-rc.18",
|
22
|
+
"@apimock-rs/bin-darwin-arm64": "4.0.0-rc.18",
|
23
|
+
"@apimock-rs/bin-win32-x64-msvc": "4.0.0-rc.18"
|
24
24
|
},
|
25
25
|
"keywords": [
|
26
26
|
"api",
|