-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.55 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
{
"name": "koa-x-oapi-validator",
"version": "1.0.1",
"description": "Koa port of the popular express-openapi-validator library.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"esbuild": "src/index.ts",
"license": "MIT",
"author": "Ron Gummich",
"repository": {
"url": "https://github.com/ron96G/koa-x-oapi-validator"
},
"keywords": [
"swagger",
"openapi",
"openapi 3",
"koa",
"request validation",
"response validation",
"middleware",
"nodejs"
],
"scripts": {
"build": "tsc --build",
"clean": "rm -rf dist",
"reset": "rm -rf dist node_modules",
"lint": "eslint . --ext ts",
"format": "prettier --write .",
"test": "jest --detectOpenHandles --forceExit --errorOnDeprecated --injectGlobals --silent",
"prepublishOnly": "npm run build"
},
"dependencies": {
"debug": "^4.3.4",
"express": "^4.18.2",
"express-openapi-validator": "^5.0.2",
"koa": "^2.14.1"
},
"devDependencies": {
"@koa/router": "^12.0.0",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/koa": "^2.13.5",
"@types/koa__router": "^12.0.0",
"@types/koa-bodyparser": "^4.3.10",
"@types/node": "^20.2.5",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"eslint": "^8.34.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"jest-junit": "^16.0.0",
"koa-bodyparser": "^4.3.0",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}