-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 878 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
{
"name": "fake-rest-json-api",
"version": "2.0.0-rc",
"description": "Fake REST API for testing 🧶 .. ",
"main": "index.js",
"scripts": {
"useJSON": "json-server -p 4444 --watch",
"useDefaultJSON": "npm run useJSON db.json",
"useModel": "json-server -p 4444",
"useDefaultModel": "npm run useModel index.js"
},
"repository": {
"type": "git",
"url": "[email protected]:3imed-jaberi/fake-rest-json-api.git"
},
"author": {
"name": "Imed Jaberi",
"email": "[email protected]",
"url": "https://github.com/3imed-jaberi"
},
"license": "MIT",
"dependencies": {
"faker": "^4.1.0",
"json-server": "^0.16.1"
},
"engines": {
"node": ">= 10"
},
"bugs": {
"url": "https://github.com/3imed-jaberi/fake-rest-json-api/issues"
},
"homepage": "https://github.com/3imed-jaberi/fake-rest-json-api#readme"
}