-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.82 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.82 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@brentbroeckx/mock-hub",
"version": "0.3.0",
"description": "Integration Mock Hub - OpenAPI-driven mock server",
"type": "module",
"bin": {
"mock-hub": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/brent-broeckx/mock-hub.git"
},
"bugs": {
"url": "https://github.com/brent-broeckx/mock-hub/issues"
},
"homepage": "https://github.com/brent-broeckx/mock-hub#readme",
"keywords": [
"openapi",
"mock",
"api",
"cli",
"fastify",
"testing"
],
"scripts": {
"build": "tsup",
"prepack": "npm run build",
"dev": "tsx src/cli/index.ts run --spec ./scenarios/examples/templating/openapi.yaml --source ./scenarios/examples/templating/scenarios --ui --logging",
"start": "node dist/cli.js run --spec ./scenarios/examples/default/openapi.yaml --source ./scenarios/examples/default/scenarios --scenario PartnerDown --ui --logging",
"test": "vitest",
"test:ci": "npm run build && vitest run --reporter=verbose --no-watch --coverage=false"
},
"dependencies": {
"commander": "^12.1.0",
"fastify": "^4.26.2",
"ink": "^5.0.1",
"ink-select-input": "^6.0.0",
"json-schema-faker": "^0.5.5",
"openapi-types": "^12.1.3",
"react": "^18.2.0",
"swagger-parser": "^10.0.3",
"yaml": "^2.4.5"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^20.11.30",
"@types/react": "^18.2.70",
"execa": "^8.0.1",
"memfs": "^4.17.0",
"tsup": "^8.1.0",
"tsx": "^4.19.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}