UNPKG

2.28 kBJSONView Raw
1{
2 "name": "openapicmd",
3 "description": "Command line tools for openapi-enabled APIs",
4 "version": "0.1.16",
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 "@koa/cors": "^3.0.0",
12 "@oclif/command": "^1.5.11",
13 "@oclif/config": "^1.12.9",
14 "@oclif/plugin-help": "^2.1.6",
15 "axios": "^0.19.0",
16 "cli-ux": "^5.2.1",
17 "get-port": "^5.0.0",
18 "js-yaml": "^3.13.1",
19 "koa": "^2.7.0",
20 "koa-bodyparser": "^4.2.1",
21 "koa-logger": "^3.2.0",
22 "koa-mount": "^4.0.0",
23 "koa-proxy": "^1.0.0-alpha.0",
24 "koa-router": "^7.4.0",
25 "koa-static": "^5.0.0",
26 "openapi-backend": "^2.3.0",
27 "swagger-editor-dist": "^3.6.24",
28 "swagger-parser": "^8.0.0",
29 "swagger-ui-dist": "^3.21.0",
30 "swagger2openapi": "^5.2.5",
31 "tslib": "^1.9.3"
32 },
33 "devDependencies": {
34 "@oclif/dev-cli": "^1.21.2",
35 "@oclif/test": "^1.2.4",
36 "@oclif/tslint": "^3.1.1",
37 "@types/koa": "^2.0.48",
38 "@types/koa-bodyparser": "^4.2.2",
39 "@types/koa-logger": "^3.1.1",
40 "@types/koa-router": "^7.0.40",
41 "@types/koa-static": "^4.0.1",
42 "@types/node": "^10.12.29",
43 "@types/swagger-ui-dist": "^3.0.0",
44 "@types/yamljs": "^0.2.30",
45 "chai": "^4.2.0",
46 "globby": "^8.0.2",
47 "jest": "^25.0.0",
48 "prettier": "^1.16.4",
49 "ts-jest": "^23.10.5",
50 "ts-node": "^7.0.1",
51 "tslint": "^5.13.1",
52 "typescript": "^3.3.3333"
53 },
54 "engines": {
55 "node": ">=8.0.0"
56 },
57 "files": [
58 "/bin",
59 "/lib",
60 "/oclif.manifest.json"
61 ],
62 "homepage": "https://github.com/anttiviljami/openapicmd",
63 "keywords": [
64 "oclif"
65 ],
66 "license": "MIT",
67 "main": "lib/index.js",
68 "oclif": {
69 "commands": "./lib/commands",
70 "bin": "openapi",
71 "plugins": [
72 "@oclif/plugin-help"
73 ]
74 },
75 "repository": "anttiviljami/openapicmd",
76 "scripts": {
77 "postpack": "rm -f oclif.manifest.json",
78 "prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
79 "watch-build": "tsc -w",
80 "build": "tsc -b",
81 "test": "jest -i",
82 "lint": "tslint -p . -t stylish",
83 "version": "oclif-dev readme && git add README.md"
84 },
85 "types": "lib/index.d.ts"
86}