forked from jordanwalsh23/postman-local-mock-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 785 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "@jordanwalsh23/postman-local-mock-server",
"version": "0.0.11",
"description": "Provides the ability to run Postman collections as a local mock server.",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"bin": {
"postman-local": "./bin/postman-local-cli.js"
},
"author": "Jordan Walsh <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/jordanwalsh23/postman-local-mock-server"
},
"keywords": [
"postman",
"mock",
"api",
"collection",
"local"
],
"license": "MIT",
"dependencies": {
"@faker-js/faker": "^7.4.0",
"express": "^4.18.1",
"lodash": "^4.17.21",
"yargs": "13.2"
},
"devDependencies": {
"axios": "^1.6.2",
"mocha": "^10.0.0"
}
}