forked from wesleytodd/express-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 902 Bytes
/
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
{
"name": "@aisightgmbh/express-openapi",
"version": "0.1.1",
"description": "Middleware for generating OpenAPI/Swagger documentation for your Express app",
"author": "Wes Todd <wes@wesleytodd.com>",
"keywords": [
"express",
"openapi",
"swagger",
"documentation"
],
"license": "ISC",
"main": "index.js",
"scripts": {
"test": "standard && mocha",
"prepublishOnly": "npm t",
"postpublish": "git push origin && git push origin --tags"
},
"devDependencies": {
"express": "^4.16.4",
"mocha": "^5.2.0",
"standard": "^12.0.1",
"supertest": "^3.3.0"
},
"dependencies": {
"ajv": "^6.10.2",
"http-errors": "^1.7.3",
"merge-deep": "^3.0.2",
"path-to-regexp": "^2.4.0",
"redoc": "^2.0.0-alpha.41",
"router": "^1.3.3",
"serve-static": "^1.13.2",
"swagger-parser": "^6.0.5",
"swagger-ui-dist": "^3.20.2"
}
}