mockforme 1.1.9 → 1.1.10
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 +3 -3
- package/package.json +2 -4
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ mockforme npm package can be used to intercept APIs and return mock responses cr
|
|
|
7
7
|
|
|
8
8
|
#### Prerequisites ####
|
|
9
9
|
* Register and login on [https://www.mockforme.com](https://www.mockforme.com)
|
|
10
|
-
* Generate client access token from: https://
|
|
10
|
+
* Generate client access token from: https://dashboard.mockforme.com/user/token
|
|
11
11
|
|
|
12
12
|
#### Installation ####
|
|
13
13
|
Install the package using npm or yarn:
|
|
@@ -24,7 +24,7 @@ yarn add mockforme
|
|
|
24
24
|
```
|
|
25
25
|
import mockforme from 'mockforme';
|
|
26
26
|
```
|
|
27
|
-
* Initialize the SDK using Access Token (Generate access token [here](https://
|
|
27
|
+
* Initialize the SDK using Access Token (Generate access token [here](https://dashboard.mockforme.com/user/token))
|
|
28
28
|
```
|
|
29
29
|
mockforme('<ACCESS_TOKEN>').initialize();
|
|
30
30
|
```
|
|
@@ -46,4 +46,4 @@ mockforme('<ACCESS_TOKEN>').initialize();
|
|
|
46
46
|
- **Easy Integration:** The easiest integration ever; works like a charm
|
|
47
47
|
|
|
48
48
|
### Who do I talk to? ###
|
|
49
|
-
For queries, email us: [
|
|
49
|
+
For queries, email us: [developer@mockforme.com](mailto:developer@mockforme.com)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mockforme",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.10",
|
|
4
4
|
"description": "mockforme client integration kit. Intercept APIs & get mock responses. Integrate mockforme SDK with your codebase in seconds",
|
|
5
5
|
"main": "dist/mockforme.min.js",
|
|
6
6
|
"files": [
|
|
@@ -24,7 +24,5 @@
|
|
|
24
24
|
"license": "ISC",
|
|
25
25
|
"homepage": "https://www.mockforme.com",
|
|
26
26
|
"dependencies": {},
|
|
27
|
-
"devDependencies": {
|
|
28
|
-
|
|
29
|
-
}
|
|
27
|
+
"devDependencies": {}
|
|
30
28
|
}
|