UNPKG

2.55 kBJSONView Raw
1{
2 "name": "openapicmd",
3 "description": "OpenAPI Command Line Tool",
4 "version": "1.9.0",
5 "author": "Viljami Kuosmanen <viljami@avoinsorsa.fi>",
6 "bin": {
7 "openapi": "bin/run"
8 },
9 "bugs": "https://github.com/anttiviljami/openapicmd/issues",
10 "dependencies": {
11 "@apidevtools/swagger-parser": "^10.0.2",
12 "@koa/cors": "^3.0.0",
13 "@oclif/command": "^1.7.0",
14 "@oclif/config": "^1.12.9",
15 "@oclif/plugin-help": "^2.1.6",
16 "@types/inquirer": "^7.3.1",
17 "axios": "^0.21.1",
18 "chalk": "^4.0.0",
19 "cli-ux": "^5.4.5",
20 "debug": "^4.1.1",
21 "get-port": "^5.0.0",
22 "inquirer": "^7.1.0",
23 "js-yaml": "^3.13.1",
24 "koa": "^2.7.0",
25 "koa-bodyparser": "^4.2.1",
26 "koa-logger": "^3.2.0",
27 "koa-mount": "^4.0.0",
28 "koa-proxy": "^1.0.0-alpha.0",
29 "koa-router": "^9.4.0",
30 "koa-static": "^5.0.0",
31 "openapi-backend": "^5.1.0",
32 "openapi-client-axios": "^4.4.9",
33 "swagger-editor-dist": "^3.6.24",
34 "swagger-ui-dist": "^3.21.0",
35 "swagger2openapi": "^7.0.2",
36 "tslib": "^2.0.2"
37 },
38 "devDependencies": {
39 "@oclif/dev-cli": "^1.26.9",
40 "@oclif/test": "^1.2.4",
41 "@oclif/tslint": "^3.1.1",
42 "@types/debug": "^4.1.5",
43 "@types/koa": "^2.0.48",
44 "@types/koa-bodyparser": "^4.2.2",
45 "@types/koa-logger": "^3.1.1",
46 "@types/koa-router": "^7.0.40",
47 "@types/koa-static": "^4.0.1",
48 "@types/node": "^13.11.1",
49 "@types/swagger-ui-dist": "^3.0.0",
50 "@types/yamljs": "^0.2.30",
51 "chai": "^4.2.0",
52 "globby": "^11.0.0",
53 "jest": "^27.4.4",
54 "nock": "^12.0.3",
55 "prettier": "^2.0.4",
56 "rimraf": "^3.0.2",
57 "ts-jest": "^27.1.1",
58 "ts-node": "^10.4.0",
59 "tslint": "^6.1.3",
60 "typescript": "^4.5.3",
61 "wait-on": "^4.0.2"
62 },
63 "engines": {
64 "node": ">=8.0.0"
65 },
66 "files": [
67 "/bin",
68 "/lib",
69 "/oclif.manifest.json"
70 ],
71 "homepage": "https://github.com/anttiviljami/openapicmd",
72 "keywords": [
73 "oclif"
74 ],
75 "license": "MIT",
76 "main": "lib/index.js",
77 "oclif": {
78 "commands": "./lib/commands",
79 "bin": "openapi",
80 "plugins": [
81 "@oclif/plugin-help"
82 ]
83 },
84 "repository": "anttiviljami/openapicmd",
85 "scripts": {
86 "postpack": "rm -f oclif.manifest.json",
87 "prepack": "rm -rf lib && npm run build && oclif-dev manifest && npm run readme",
88 "readme": "bin/run readme",
89 "watch-build": "tsc -w",
90 "build": "tsc -b",
91 "test": "jest -i",
92 "lint": "tslint -p . -t stylish",
93 "version": "oclif-dev readme && git add README.md"
94 },
95 "types": "lib/index.d.ts"
96}