forked from fastify/fastify-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 869 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
37
38
{
"name": "fastify-swagger",
"version": "0.5.0",
"description": "Generate Swagger files automatically for Fastify.",
"main": "index.js",
"scripts": {
"test": "standard && tap test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-swagger.git"
},
"keywords": [
"fastify",
"swagger"
],
"author": "Tomas Della Vedova - @delvedor (http://delved.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-swagger/issues"
},
"homepage": "https://github.com/fastify/fastify-swagger#readme",
"devDependencies": {
"fastify": "^0.43.0",
"standard": "^10.0.3",
"swagger-parser": "^4.0.2",
"tap": "^11.1.0"
},
"dependencies": {
"fastify-plugin": "^0.2.2",
"js-yaml": "^3.10.0"
},
"standard": {
"ignore": [
"static"
]
}
}