forked from fastify/fastify-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.69 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
{
"name": "fastify-swagger",
"version": "4.11.0",
"description": "Serve Swagger/OpenAPI documentation for Fastify, supporting dynamic generation",
"main": "index.js",
"scripts": {
"prepare": "node lib/util/prepare-swagger-ui",
"prepublishOnly": "npm run prepare",
"test": "standard && tap --100 \"test/**/*.js\" && npm run typescript",
"test:ci": "standard && tap \"test/**/*.js\" --coverage-report=lcovonly && npm run typescript",
"typescript": "tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-swagger.git"
},
"keywords": [
"fastify",
"swagger",
"openapi",
"serve",
"generate",
"static"
],
"author": "Tomas Della Vedova - @delvedor (http://delved.org)",
"contributors": [
{
"name": "Matteo Collina",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-swagger/issues"
},
"homepage": "https://github.com/fastify/fastify-swagger#readme",
"devDependencies": {
"@types/node": "^16.0.0",
"fastify": "^3.7.0",
"fastify-helmet": "^5.0.3",
"fs-extra": "^10.0.0",
"joi": "^14.3.1",
"joi-to-json": "^1.2.0",
"pre-commit": "^1.2.2",
"qs": "^6.5.2",
"standard": "^16.0.1",
"swagger-parser": "^10.0.2",
"swagger-ui-dist": "3.52.0",
"tap": "^15.0.1",
"tsd": "^0.17.0"
},
"dependencies": {
"fastify-plugin": "^3.0.0",
"fastify-static": "^4.0.0",
"js-yaml": "^4.0.0",
"json-schema-resolver": "^1.3.0",
"openapi-types": "^9.1.0"
},
"standard": {
"ignore": [
"static",
"tap-snapshots/*"
]
},
"tsd": {
"directory": "test/types"
}
}