-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
172 lines (172 loc) · 5.56 KB
/
package.json
File metadata and controls
172 lines (172 loc) · 5.56 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"name": "@apimatic/cli",
"description": "The official CLI for APIMatic.",
"version": "1.1.0-beta.14",
"author": "APIMatic",
"bin": {
"apimatic": "./bin/run.js"
},
"bugs": {
"url": "https://github.com/apimatic/apimatic-cli/issues",
"email": "support@apimatic.io"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"./bin",
"./lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"repository": "git://github.com/apimatic/apimatic-cli.git",
"homepage": "https://docs.apimatic.io/apimatic-cli/intro-and-install/",
"keywords": [
"apimatic",
"cli",
"sdk generation",
"openapi",
"api",
"automation"
],
"license": "MIT",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -b",
"postpack": "rimraf oclif.manifest.json",
"posttest": "eslint . --ext .ts",
"prettier": "prettier \"src/**/*.{js,ts}\"",
"format": "prettier --write \"src/**/*.{js,ts}\"",
"lint": "eslint \"src/**/*.{js,ts}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,ts}\" --quiet",
"test": "tsx node_modules/mocha/bin/_mocha --forbid-only \"test/**/*.test.ts\" --timeout 99999"
},
"dependencies": {
"@apimatic/sdk": "0.2.0-alpha.8",
"@clack/prompts": "1.0.0-alpha.1",
"@oclif/core": "^4.2.8",
"@oclif/plugin-autocomplete": "^3.2.24",
"@oclif/plugin-help": "^6.2.26",
"async-mutex": "^0.5.0",
"axios": "^1.8.1",
"chokidar": "^3.6.0",
"connect-livereload": "^0.6.1",
"execa": "^9.6.0",
"express": "^4.17.1",
"extract-zip": "^2.0.1",
"fast-levenshtein": "^3.0.0",
"form-data": "^4.0.2",
"fs-extra": "^11.3.0",
"get-port": "^7.1.0",
"is-in-ci": "^2.0.0",
"isomorphic-git": "^1.37.2",
"livereload": "^0.9.3",
"neverthrow": "^8.2.0",
"open": "^8.4.0",
"prettier": "^2.8.8",
"striptags": "^3.2.0",
"tmp-promise": "^3.0.3",
"tslib": "^2.8.1",
"uuid": "^11.1.0",
"yaml": "^2.8.0",
"yazl": "^3.3.1"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^15.0.0",
"@eslint/js": "^9.34.0",
"@oclif/test": "^4.1.13",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/base-64": "^1.0.0",
"@types/chai": "^4.3.20",
"@types/connect-livereload": "^0.5.32",
"@types/express": "^4.17.23",
"@types/fast-levenshtein": "^0.0.4",
"@types/fs-extra": "^9.0.13",
"@types/livereload": "^0.9.5",
"@types/mocha": "^5.2.7",
"@types/mock-fs": "^4.13.4",
"@types/node": "^20.17.50",
"@types/prettier": "^2.7.3",
"@types/sinon": "^17.0.4",
"@types/treeify": "^1.0.3",
"@types/unzipper": "^0.10.4",
"@types/yazl": "^3.3.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"chai": "^4.5.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"mocha": "^11.7.1",
"mock-fs": "^5.5.0",
"nock": "^14.0.4",
"nyc": "^17.1.0",
"oclif": "^4.17.34",
"rimraf": "^6.0.1",
"semantic-release": "^23.1.1",
"sinon": "^21.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5.2.2"
},
"oclif": {
"commands": "./lib/commands",
"dirname": "apimatic",
"bin": "apimatic",
"description": "The official CLI for APIMatic. \nTo get started with APIMatic's CLI using a step by step wizard, run 'apimatic quickstart'.",
"hooks": {
"command_not_found": "./lib/hooks/not-found"
},
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-help"
],
"topics": {
"api": {
"description": "Transform & Validate your API specifications."
},
"auth": {
"description": "Login using your APIMatic credentials, or view your authentication status."
},
"portal": {
"description": "Generate, download and serve an API Documentation portal for your APIs."
},
"sdk": {
"description": "Generate and publish SDKs for your APIs in multiple languages."
},
"publishing": {
"description": "Manage SDK publishing configurations."
},
"publishing:profile": {
"description": "Manage publishing profiles."
},
"portal:toc": {
"description": "Generate a Table of Contents (TOC) file for your API documentation portal."
}
},
"topicSeparator": " ",
"state": "beta"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,ts}": "prettier --write"
},
"overrides": {
"diff": "^8.0.4",
"inflight": "npm:lru-cache@^7.14.1",
"lodash.get": "npm:lodash@^4.17.21",
"@humanwhocodes/config-array": "npm:@eslint/config-array@latest",
"rimraf": "^6.0.1",
"glob": "^13.0.0",
"q": "npm:promise@^8.3.0"
}
}