-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.14 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
{
"name": "apig-swagger-ui",
"description": "Command line tool for generating OpenAPI spec and SwaggerUI from AWS API Gateway",
"version": "1.5.1",
"author": "James Hu",
"bin": {
"apig-swagger-ui": "./bin/apig-swagger-ui.js"
},
"bugs": "https://github.com/james-hu/apig-swagger-ui/issues",
"dependencies": {
"@handy-common-utils/aws-utils": "^2.0.4",
"@handy-common-utils/oclif-utils": "^1.1.3",
"@oclif/core": "^1.9.0",
"@oclif/plugin-help": "^5.1.12",
"@oclif/plugin-plugins": "^2.1.0",
"aws-sdk": "^2.1148.0",
"fs-extra": "^9.0.1",
"micromatch": "^4.0.2",
"open": "^7.2.1",
"openapi-types": "^7.0.1",
"really-simple-http-server": "^1.2.0",
"swagger-ui-dist": "^5.11.0"
},
"devDependencies": {
"@handy-common-utils/dev-dependencies-mocha": "^1.3.0",
"@oclif/test": "^2.1.0",
"@types/fs-extra": "^8.1.2",
"@types/micromatch": "^4.0.1",
"@types/swagger-ui-dist": "^3.30.1",
"oclif": "^3.0.1",
"pkg": "^5.8.0"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/james-hu/apig-swagger-ui",
"keywords": [
"aws",
"api",
"gateway",
"apigateway",
"swagger",
"openapi",
"export",
"swagger-ui"
],
"license": "Apache 2.0",
"main": "lib/index.js",
"pkg": {
"scripts": [
"lib/**/*.js",
"bin/apig-swagger-ui"
],
"assets": [
"node_modules/swagger-ui-dist"
],
"outputPath": "pkg",
"targets": [
"node16-macos-x64",
"node16-macos-arm64",
"node16-linux-x64",
"node16-linux-arm64",
"node16-win-x64"
]
},
"oclif": {
"bin": "apig-swagger-ui",
"plugins": [
"@oclif/plugin-plugins",
"@oclif/plugin-help"
]
},
"repository": "james-hu/apig-swagger-ui",
"scripts": {
"pretest": "eslint . --ext .ts",
"prepare": "shx rm -rf lib && tsc",
"test": "nyc mocha",
"pkg": "npm run prepare && pkg --compress GZip .",
"preversion": "./bin/run --update-readme.md && git add README.md"
},
"types": "lib/index.d.ts",
"volta": {
"node": "16.20.0",
"npm": "8.19.4"
}
}