-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
40 lines (40 loc) · 910 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
{
"name": "openapi-mock",
"version": "0.0.8",
"description": "Create a mock server from an OpenAPI/Swagger file",
"keywords": [
"openapi",
"mock",
"stub",
"swagger",
"nodejs"
],
"author": "Alasdair McLeay",
"license": "ISC",
"main": "app.js",
"scripts": {
"test": "mocha --recursive \"./*.test.js\"",
"test:break": "node --inspect-brk app.test.js"
},
"dependencies": {
"chalk": "^2.3.0",
"commander": "^2.14.1",
"express": "^4.16.2",
"@openapi-mock/swagger-node-runner": "0.0.2"
},
"bin": {
"openapi-mock": "./cli.js"
},
"devDependencies": {
"mocha": "^5.2.0",
"supertest": "^3.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/penx/openapi-mock.git"
},
"bugs": {
"url": "https://github.com/penx/openapi-mock/issues"
},
"homepage": "https://github.com/penx/openapi-mock#readme"
}