-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
44 lines (44 loc) · 1.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
{
"name": "@wesleytodd/openapi",
"version": "1.1.0",
"description": "Middleware for generating OpenAPI/Swagger documentation for your Express app",
"author": "Wes Todd <[email protected]>",
"keywords": [
"express",
"openapi",
"swagger",
"documentation"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "wesleytodd/express-openapi"
},
"scripts": {
"test": "standard && mocha",
"prepublishOnly": "EXPRESS_MAJOR=4 mocha && EXPRESS_MAJOR=5 mocha",
"postpublish": "git push origin && git push origin --tags"
},
"devDependencies": {
"express": "^4.18.2",
"express4": "github:expressjs/express#4.19.2",
"express5": "npm:express@^5.0.0-beta.3",
"mocha": "^10.3.0",
"standard": "^17.1.0",
"supertest": "^6.3.4"
},
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0",
"http-errors": "^2.0.0",
"merge-deep": "^3.0.3",
"path-to-regexp": "^6.2.1",
"router": "^1.3.8",
"serve-static": "^1.15.0",
"swagger-parser": "^10.0.3",
"swagger-ui-dist": "^5.11.8",
"yaml": "^2.4.0"
}
}