generated from fastify/skeleton
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
89 lines (89 loc) · 2.11 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
88
89
{
"name": "@fastify/swagger-ui",
"version": "5.1.0",
"description": "Serve Swagger-ui for Fastify",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"lint": "standard",
"lint:fix": "npm run lint -- --fix",
"prepare": "node scripts/prepare-swagger-ui",
"prepublishOnly": "npm run prepare",
"test": "npm run prepare && npm run unit && npm run typescript",
"test:dev": "npm run lint && npm run unit && npm run typescript",
"test:e2e:command": "node ./examples/example-e2e.js",
"test:e2e": "npx playwright test",
"test:e2e:ui": "npx playwright test --ui",
"typescript": "tsd",
"unit": "c8 --100 node --test"
},
"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": "hello@matteocollina.com"
}
],
"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": "^6.0.0",
"@fastify/helmet": "^12.0.0",
"@fastify/pre-commit": "^2.1.0",
"@fastify/swagger": "^9.0.0",
"@playwright/test": "^1.43.1",
"@types/node": "^22.0.0",
"ajv": "^8.12.0",
"c8": "^10.1.2",
"fastify": "^5.0.0",
"fs-extra": "^11.2.0",
"qs": "^6.12.1",
"standard": "^17.1.0",
"swagger-ui-dist": "5.18.2",
"tsd": "^0.31.0"
},
"dependencies": {
"@fastify/static": "^8.0.0",
"fastify-plugin": "^5.0.0",
"openapi-types": "^12.1.3",
"rfdc": "^1.3.1",
"yaml": "^2.4.1"
},
"standard": {
"ignore": [
"dist"
]
},
"tsd": {
"directory": "types"
},
"pkg": {
"assets": [
"static/**/*"
]
},
"publishConfig": {
"access": "public"
},
"pre-commit": [
"lint",
"test"
]
}