-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1015 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
39
40
41
42
{
"name": "json-mock-api",
"version": "1.2.2",
"description": "Mock an api with plain json files",
"main": "index.js",
"scripts": {
"start": "./bin/json-mock-api --directory ./test/api --middleware ./test/api/middleware.js",
"test": "jest",
"prepublish": "npm run test"
},
"bin": {
"json-mock-api": "./bin/json-mock-api"
},
"repository": {
"type": "git",
"url": "git+https://github.com/petergoes/json-mock-api.git"
},
"keywords": [
"json",
"api",
"mock"
],
"author": "Peter Goes <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/petergoes/json-mock-api/issues"
},
"homepage": "https://github.com/petergoes/json-mock-api#readme",
"dependencies": {
"body-parser": "^1.20.3",
"chalk": "4.1.1",
"commander": "7.2.0",
"cors": "2.8.5",
"express": "^4.21.1",
"lodash.debounce": "^4.0.8"
},
"devDependencies": {
"jest": "26.6.3",
"node-fetch": "2.6.1",
"wait-on": "5.3.0"
}
}