forked from fastify/fastify-swagger-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.08 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@lineupr/fastify-swagger-ui",
"version": "1.9.6",
"description": "Serve Swagger-ui for Fastify",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"coverage": "npm run unit -- --coverage-report=lcovonly",
"lint": "standard",
"lint:fix": "npm run lint -- --fix",
"prepare": "node scripts/prepare-swagger-ui",
"prepublishOnly": "npm run prepare",
"test": "npm run prepare && npm run coverage && npm run typescript",
"test:dev": "npm run lint && npm run unit && npm run typescript",
"typescript": "tsd",
"unit": "tap",
"unit:report": "npm run unit -- --coverage-report=html",
"unit:verbose": "npm run unit -- -Rspec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-swagger-ui.git"
},
"keywords": [
"fastify",
"swagger",
"openapi",
"swagger-ui",
"serve",
"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-ui/issues"
},
"homepage": "https://github.com/fastify/fastify-swagger-ui#readme",
"devDependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@fastify/basic-auth": "^5.0.0",
"@fastify/helmet": "^10.0.0",
"@fastify/pre-commit": "^2.0.2",
"@fastify/swagger": "^8.0.0",
"@types/node": "^20.1.1",
"ajv": "^8.11.0",
"fastify": "^4.0.0",
"fs-extra": "^11.0.0",
"qs": "^6.11.0",
"standard": "^17.0.0",
"swagger-ui-dist": "5.0.0",
"tap": "^16.3.2",
"tsd": "^0.28.0"
},
"dependencies": {
"@fastify/static": "^6.0.0",
"fastify-plugin": "^4.0.0",
"openapi-types": "^12.0.2",
"rfdc": "^1.3.0",
"yaml": "^2.2.2"
},
"standard": {
"ignore": [
"dist"
]
},
"tsd": {
"directory": "types"
},
"pkg": {
"assets": [
"static/**/*"
]
},
"publishConfig": {
"access": "public"
},
"pre-commit": [
"lint",
"test"
]
}