forked from fastify/fastify-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "fastify-swagger",
"version": "0.7.1",
"description": "Generate Swagger files automatically for Fastify.",
"main": "index.js",
"scripts": {
"prepare:swagger-ui": "node prepare-swagger-ui",
"test": "standard && tap test/*.js",
"prepublish": "npm run prepare:swagger-ui"
},
"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": "^1.1.1",
"fs-extra": "^5.0.0",
"standard": "^11.0.0",
"swagger-parser": "^4.0.2",
"swagger-ui-dist": "3.13.2",
"tap": "^11.1.3"
},
"dependencies": {
"fastify-plugin": "^0.2.2",
"fastify-static": "^0.9.0",
"js-yaml": "^3.11.0"
},
"standard": {
"ignore": [
"static"
]
}
}