-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.39 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.39 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
{
"name": "openapi-commander",
"version": "3.2.0",
"description": "Generate a commander.js CLI tool from an OpenAPI definition.",
"exports": "src/index.js",
"engines": {
"node": ">=24.0.0"
},
"type": "module",
"keywords": [
"openapi",
"openapi3",
"commander",
"cli",
"api",
"generator"
],
"repository": {
"type": "git",
"url": "https://github.com/bcoughlan/openapi-commander"
},
"files": [
"bin",
"dist",
"resources"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"openapi-commander": "bin/run.js"
},
"scripts": {
"build": "tsc",
"test": "node --test src/**/*.test.ts test-e2e/**/*.test.ts",
"lint": "eslint src"
},
"author": "Barry Coughlan",
"license": "MIT",
"dependencies": {
"@apidevtools/swagger-parser": "^12.0.0",
"commander": "^14.0.0",
"lodash-es": "^4.17.21",
"openapi-sampler": "^1.6.1",
"swagger2openapi": "^7.0.8"
},
"overrides": {
"supports-color": "8.1.1"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/express": "^5.0.3",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.20",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.3.0",
"eslint": "^9.33.0",
"express": "^5.1.0",
"openapi-types": "^12.1.3",
"tmp-promise": "^3.0.3",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0"
}
}