forked from openapistack/openapicmd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.05 KB
/
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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "openapicmd",
"description": "OpenAPI Command Line Tool",
"version": "2.2.1",
"author": "Viljami Kuosmanen <[email protected]>",
"bin": {
"openapi": "./bin/run.js"
},
"bugs": "https://github.com/openapistack/openapicmd/issues",
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@koa/cors": "^4.0.0",
"@oclif/command": "^1.8.36",
"@oclif/config": "^1.18.17",
"@oclif/core": "^3",
"@oclif/errors": "^1.3.6",
"@oclif/plugin-help": "^6.0.2",
"@oclif/plugin-plugins": "^3.9.1",
"@types/inquirer": "^7.3.1",
"ajv": "^8.12.0",
"axios": "^1.3.4",
"chalk": "^4.0.0",
"cli-ux": "^6.0.9",
"common-tags": "^1.8.2",
"debug": "^4.1.1",
"deepmerge": "^4.3.0",
"get-port": "^5.0.0",
"inquirer": "^7.1.0",
"jest": "^29.7.0",
"jest-json-schema": "^6.1.0",
"js-yaml": "^4.1.0",
"klona": "^2.0.6",
"koa": "^2.14.1",
"koa-bodyparser": "^4.3.0",
"koa-logger": "^3.2.1",
"koa-mount": "^4.0.0",
"koa-proxy": "^1.0.0-alpha.3",
"koa-router": "^12.0.0",
"koa-static": "^5.0.0",
"openapi-backend": "^5.6.2",
"openapi-client-axios": "^7.5.4",
"openapi-client-axios-typegen": "^7.5.4",
"swagger-editor-dist": "^4.11.2",
"swagger-ui-dist": "^5.9.0",
"swagger2openapi": "^7.0.8",
"tslib": "^2.5.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.10",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^3",
"@types/common-tags": "^1.8.2",
"@types/debug": "^4.1.7",
"@types/jest": "^29.5.1",
"@types/jest-json-schema": "^6.1.2",
"@types/js-yaml": "^4.0.7",
"@types/koa": "^2.13.5",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-logger": "^3.1.2",
"@types/node": "^18.14.1",
"@types/swagger-ui-dist": "^3.30.1",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"chai": "^4.2.0",
"eslint": "^8.51.0",
"globby": "^11.0.0",
"nock": "^13.3.0",
"oclif": "^4.0.2",
"openapi-types": "^12.1.0",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"wait-on": "^4.0.2"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"/bin",
"/lib",
"/oclif.manifest.json"
],
"homepage": "https://openapistack.co",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "openapi",
"topicSeparator": " ",
"topics": {
"test": {
"description": "Run automated tests against APIs"
}
},
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "openapistack/openapicmd",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && npm run build && oclif manifest && oclif readme",
"readme": "npm run build && oclif readme",
"watch-build": "tsc -w",
"build": "tsc -b",
"test": "jest -i",
"lint": "eslint . --ext .ts",
"version": "oclif readme && git add README.md"
},
"types": "lib/index.d.ts"
}