-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.08 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.08 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@draganfilipovic/mocker",
"version": "1.4.0",
"description": "Simple Node.js mock server with GUI for managing API endpoints and responses",
"private": false,
"publishConfig": {
"access": "public"
},
"main": "index.js",
"bin": {
"mocker": "./index.js"
},
"scripts": {
"start": "node index.js --port 3003",
"dev": "node index.js",
"test": "echo \"Error: no test specified\""
},
"keywords": [
"mock",
"server",
"api",
"testing",
"development",
"gui",
"endpoints",
"http",
"rest"
],
"author": "Dragan Filipovic",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/easingthemes/mocker.git"
},
"bugs": {
"url": "https://github.com/easingthemes/mocker/issues"
},
"homepage": "https://github.com/easingthemes/mocker#readme",
"dependencies": {
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"fs-extra": "^11.3.2"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"index.js",
"public/",
"README.md"
]
}