-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
91 lines (91 loc) · 2.42 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
90
91
{
"name": "@rudi23/yup-to-openapi",
"version": "3.0.0",
"description": "Configurable, input validated routing for koa using yup",
"keywords": [
"yup",
"openapi",
"parser",
"converter",
"transformer",
"validate",
"validator",
"validation"
],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "npm run build:esm && npm run build:cjs && npm run build:types",
"build:types": "tsc --build --verbose tsconfig.d.ts.json",
"build:esm": "tsc --build --verbose tsconfig.esm.json",
"build:cjs": "tsc --build --verbose tsconfig.cjs.json",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest test",
"test:build": "tsc --build --verbose tsconfig.json",
"test:ci": "jest --ci --coverage --color",
"prepare": "npm run build && husky install",
"release": "GITHUB_TOKEN=$GITHUB_COM_TOKEN && release-it"
},
"engines": {
"node": ">= 16"
},
"author": "Krzysztof Rudowski",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rudi23/yup-to-openapi.git"
},
"bugs": {
"url": "https://github.com/rudi23/yup-to-openapi/issues"
},
"homepage": "https://github.com/rudi23/yup-to-openapi",
"files": [
"esm/**/*",
"cjs/**/*",
"@type"
],
"publishConfig": {
"access": "public"
},
"exports": {
"require": "./cjs/index.js",
"import": "./esm/index.js"
},
"main": "./cjs/index.js",
"types": "./@type/index.d.ts",
"type": "module",
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"*.{json,md}": "prettier --write"
},
"peerDependencies": {
"yup": ">=1.0.0"
},
"dependencies": {
"openapi3-ts": "4.4.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@release-it/conventional-changelog": "8.0.2",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "5.2.3",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.4.1",
"prettier": "3.4.2",
"release-it": "17.11.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"yup": "1.6.1"
}
}