forked from openapistack/openapicmd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.9 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
72
73
74
75
{
"name": "openapicmd-tmpfix",
"description": "OpenAPI Command Line Tool",
"version": "3.0.0",
"author": "Viljami Kuosmanen <viljami@viljami.io>",
"bin": {
"openapi": "./bin/run.js"
},
"bugs": "https://github.com/openapistack/openapicmd/issues",
"dependencies": {
"@anttiviljami/dtsgenerator": "^3.20.0",
"@apidevtools/swagger-parser": "^10.1.0",
"@oclif/core": "^3",
"@oclif/plugin-help": "^6.0.2",
"deepmerge": "^4.3.0",
"jest": "^29.7.0",
"indent-string": "^4.0.0",
"js-yaml": "^4.1.0",
"klona": "^2.0.6",
"lodash": "^4.17.21",
"openapi-client-axios": "^7.5.5",
"tslib": "^2.5.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.10",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^3",
"@types/jest": "^29.5.1",
"@types/js-yaml": "^4.0.7",
"@types/node": "^18.14.1",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"chai": "^4.2.0",
"eslint": "^8.51.0",
"oclif": "^4.0.2",
"openapi-types": "^12.1.0",
"prettier": "^2.0.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=20.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": " ",
"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"
}