forked from apigee-127/swagger-tools
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
63 lines (63 loc) · 1.5 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
{
"name": "oas3-tools",
"version": "2.2.0",
"description": "Swagger-UI and API Rest Routing for Open API v3.",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist/ && tsc"
},
"author": {
"name": "Hugo Mercado",
"email": "[email protected]",
"url": "https://github.com/HugoMario"
},
"bugs": {
"url": "https://github.com/bug-hunters/oas3-tools/issues"
},
"homepage": "https://github.com/bug-hunters/oas3-tools",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:bug-hunters/oas3-tools.git"
},
"keywords": [
"api",
"expressjs",
"middleware",
"swagger",
"openapi 3"
],
"files": [
"dist"
],
"dependencies": {
"async": "^3.2.3",
"body-parser": "1.19.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"debug": "^4.1.1",
"express": "^4.17.1",
"express-openapi-validator": "^4.4.3",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"parseurl": "^1.3.3",
"path-to-regexp": "^3.2.0",
"qs": "^6.9.1",
"serve-static": "^1.14.1",
"swagger-ui-dist": "^4.10.3"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/express": "^4.17.0",
"@types/js-yaml": "^3.12.1",
"@types/lodash": "^4.14.149",
"@types/parseurl": "^1.3.1",
"@types/qs": "^6.9.0",
"@types/serve-static": "^1.13.3",
"awesome-typescript-loader": "^5.2.1",
"source-map-loader": "^3.0.1",
"typescript": "^4.6.3"
}
}