-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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
{
"name": "@openapi-ts/express",
"version": "1.0.0",
"description": "Express implementation of @openapi-ts/backend. This provides simple mapping from Express handlers to typed OpenAPI request handlers.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist && rm -f tsconfig.tsbuildinfo",
"lint": "eslint src --ext js,ts --max-warnings 0",
"prepublish": "yarn clean && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/henhal/openapi-ts-express.git"
},
"keywords": [
"OpenAPI",
"Express",
"HTTP",
"request",
"response",
"TypeScript",
"backend"
],
"author": "Henrik Hall",
"license": "MIT",
"bugs": {
"url": "https://github.com/henhal/openapi-ts-express/issues"
},
"homepage": "https://github.com/henhal/openapi-ts-express#readme",
"dependencies": {
"@openapi-ts/backend": "^2.0.2",
"express": "^4.17.1"
},
"devDependencies": {
"@types/express": "^4.17.11",
"typescript": "^4.2.4"
},
"publishConfig": {
"access": "public"
}
}