-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1007 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": "openapi-multimock",
"version": "1.1.1",
"description": "A mock tool to mock multiple APIs with OAS definitions",
"main": "server.js",
"type": "module",
"scripts": {
"test": "jest --passWithNoTests",
"dev": "nodemon -w ./src --exec npm start",
"start": "./server.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/e-pilot/platform/openapi-multimock.git"
},
"bin": {
"openapi-multimock": "./server.js"
},
"keywords": [
"Docker",
"openapi",
"mock",
"tests"
],
"author": "epilot GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/e-pilot/platform/openapi-multimock/issues"
},
"homepage": "https://gitlab.com/e-pilot/platform/openapi-multimock#readme",
"dependencies": {
"express": "^4.17.1",
"minimist": "^1.2.5",
"morgan": "^1.10.0",
"openapi-backend": "^5.3.0"
},
"devDependencies": {
"jest": "^27.5.1",
"nodemon": "^2.0.12",
"prettier": "^2.3.2"
}
}