This repository has been archived by the owner on May 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 2.43 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
{
"name": "swagger-ui-cli",
"displayName": "Swagger UI CLI",
"version": "0.8.0",
"description": "A standalone CLI application, serving Swagger UIs via a HTTP server.",
"main": "dist/index.js",
"private": false,
"bin": {
"swagger-ui": "./bin/swagger-ui"
},
"files": [
"bin",
"dist"
],
"keywords": [
"swagger",
"ui",
"swagger ui",
"dist",
"cli",
"command line",
"command line interface",
"http",
"server",
"standalone",
"openapi",
"yaml",
"json",
"toml",
"javascript",
"javascript object",
"typescript",
"node",
"execute",
"script"
],
"scripts": {
"build": "del ./dist && tsc -p ./tsconfig.json",
"dev": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec node -r ts-node/register --inspect=0.0.0.0:9229 src/index.ts",
"lint": "eslint -c .eslintrc.js --ext .ts ./src",
"lint:fix": "eslint --fix -c .eslintrc.js --ext .ts ./src",
"start": "node ./dist/index.js"
},
"author": "e.GO Digital GmbH, Aachen, Germany",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/egodigital/swagger-ui-cli.git"
},
"bugs": {
"url": "https://github.com/egodigital/swagger-ui-cli/issues"
},
"homepage": "https://github.com/egodigital/swagger-ui-cli#readme",
"devDependencies": {
"@egodigital/tsconfig": "^4.0.0",
"@types/content-type": "^1.1.3",
"@types/js-yaml": "^3.12.6",
"@types/mime-types": "^2.1.0",
"@types/node": "^10.17.56",
"@types/swagger-ui-dist": "^3.30.0",
"del-cli": "^3.0.1",
"eslint": "^7.23.0",
"eslint-config-ego": "^0.13.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"tslint": "^6.1.2",
"typescript": "^4.2.3"
},
"dependencies": {
"@egodigital/types": "^1.2.0",
"@iarna/toml": "^2.2.5",
"axios": "^0.21.1",
"content-type": "^1.0.4",
"is-docker": "^2.2.0",
"js-yaml": "^3.14.1",
"meow": "^7.1.1",
"mime-types": "^2.1.30",
"open": "^7.4.2",
"ora": "^5.4.0",
"sanitize-filename": "^1.6.3",
"swagger-ui-dist": "^3.46.0"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
}
}