-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 882 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 882 Bytes
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
{
"name": "httpfaker",
"version": "0.2.1",
"description": "",
"main": "src/index.js",
"bin": {
"httpfaker": "./src/index.js"
},
"scripts": {
"start": "node .",
"dev": "nodemon src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/usebruno/httpfaker.git"
},
"keywords": [],
"author": "Anoop M D",
"files": [
"src",
"package.json",
"readme.md",
"license.md"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/usebruno/httpfaker/issues"
},
"homepage": "https://github.com/usebruno/httpfaker#readme",
"dependencies": {
"@faker-js/faker": "^9.6.0",
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^4.21.2",
"swagger-ui-express": "^5.0.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"nodemon": "^3.1.9"
}
}