forked from johnhof/swagger-injector
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
65 lines (65 loc) · 1.57 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
{
"name": "koa2-swagger-ui",
"version": "0.0.0-placeholder",
"description": "Swagger UI middleware for koa",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "ts-node test/example.ts",
"lint": "eslint --ext .ts,.js .",
"lint:fix": "eslint --ext .ts,.js --fix .",
"prepare": "npm run build",
"build": "tsc -p tsconfig.build.json",
"postbuild": "cp lib/index.hbs dist && cp lib/favicon.png dist",
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "vitest run --coverage --reporter=default --reporter=junit --outputFile=./junit.xml"
},
"dependencies": {
"handlebars": "^4.7.8",
"lodash": "^4.17.21",
"read-pkg-up": "7.0.1"
},
"devDependencies": {
"@ctrl/eslint-config": "4.0.14",
"@types/koa": "^2.15.0",
"@types/koa-router": "7.4.8",
"@types/lodash": "4.17.13",
"@types/node": "22.9.0",
"@types/supertest": "6.0.2",
"@vitest/coverage-v8": "2.1.5",
"koa": "2.15.3",
"koa-router": "13.0.1",
"supertest": "7.0.0",
"swagger-ui-dist": "5.18.2",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"vitest": "2.1.5"
},
"peerDependencies": {
"@types/koa": "*"
},
"release": {
"branches": [
"master"
]
},
"publishConfig": {
"access": "public",
"provenance": true
},
"homepage": "https://github.com/scttcper/koa2-swagger-ui",
"repository": "scttcper/koa2-swagger-ui",
"keywords": [
"swagger",
"docs",
"swagger-ui",
"koa",
"koa2",
"middleware"
],
"license": "MIT"
}