-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 756 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 756 Bytes
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
{
"name": "swagger-request-generator",
"version": "0.1.0",
"description": "convert swagger json api to frontend request",
"author": "cereschen<cereschen@outlook.com>",
"files": [
"dist"
],
"scripts": {
"watch": "tsc -w"
},
"dependencies": {
"axios": "^0.21.0",
"commander": "^7.2.0"
},
"devDependencies": {
"@types/node": "^14.6.4"
},
"main": "./dist",
"bin": {
"gen-api": "./dist/cli.js"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"engines": {
"node": ">=8.9",
"npm": ">= 3.0.0"
},
"keywords": [
"swagger",
"openapi"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cereschen/openapi-request-generator.git"
}
}