-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 882 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
36
37
38
{
"name": "json-mocks",
"version": "1.2.2",
"description": "Get a full fake REST API with zero coding in less than 10 seconds.",
"main": "index.js",
"bin": "./index.js",
"homepage": "https://github.com/anmol5varma/JSON-Mocks",
"repository": "https://github.com/anmol5varma/JSON-Mocks.git",
"bugs": {
"url": "https://github.com/anmol5varma/JSON-Mocks/issues"
},
"scripts": {
"dev": "npx nodemon index.js",
"start": "node index.js"
},
"keywords": [
"mock",
"api",
"mock server",
"rest",
"test",
"json",
"dummy"
],
"author": "anmol5varma",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1"
}
}