-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 2.86 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
92
93
94
95
96
97
98
99
100
101
{
"name": "@rudi23/koa-yup-router",
"version": "2.3.0",
"description": "Configurable, input validated routing for koa using yup",
"keywords": [
"yup",
"koa",
"router",
"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": "npm run test:unit && npm run test:integration",
"test:build": "tsc --build --verbose tsconfig.json",
"test:unit": "jest test/unit",
"test:integration": "jest test/integration",
"test:ci:unit": "jest test/unit --ci --coverage --color",
"test:ci:integration": "jest test/integration --ci --coverage --color",
"prepare": "npm run build && husky install",
"release": "GITHUB_TOKEN=$GITHUB_COM_TOKEN && release-it"
},
"engines": {
"node": ">= 12"
},
"author": "Krzysztof Rudowski",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rudi23/koa-yup-router.git"
},
"bugs": {
"url": "https://github.com/rudi23/koa-yup-router/issues"
},
"homepage": "https://github.com/rudi23/koa-yup-router",
"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"
},
"dependencies": {
"@koa/router": "12.0.2",
"await-busboy": "1.0.3",
"clone": "2.1.2",
"co-body": "6.2.0",
"delegates": "1.0.0",
"yup": "1.6.1"
},
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@release-it/conventional-changelog": "5.1.1",
"@types/busboy": "1.5.4",
"@types/clone": "2.1.4",
"@types/co-body": "6.1.3",
"@types/jest": "28.1.8",
"@types/koa": "2.15.0",
"@types/koa__router": "12.0.4",
"@types/supertest": "2.0.16",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.10.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"jest": "28.1.3",
"koa": "2.15.3",
"lint-staged": "13.3.0",
"prettier": "2.8.8",
"release-it": "15.11.0",
"supertest": "6.3.4",
"ts-jest": "28.0.8",
"ts-node": "10.9.2",
"typescript": "4.9.5"
}
}