-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.78 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
{
"name": "koa-joi-controllers",
"version": "1.2.3",
"description": "Controller decorators for Koa using koa-joi-router",
"main": "lib/main.js",
"types": "lib/main.d.ts",
"files": [
"/lib"
],
"scripts": {
"build": "tsc",
"lint": "eslint --fix ./**/*.ts",
"test": "tsc --noEmit && jest",
"deploy": "npm audit && npm run build && npm publish",
"example": "ts-node example/app.ts"
},
"keywords": [
"koa",
"controller",
"router",
"decorators"
],
"author": "Christos Giallouros",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/giall/koa-joi-controllers.git"
},
"bugs": {
"url": "https://github.com/giall/koa-joi-controllers/issues"
},
"homepage": "https://github.com/giall/koa-joi-controllers",
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended"
],
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/indent": [
"warn",
2
],
"@typescript-eslint/ban-types": [
"off"
],
"quotes": [
"warn",
"single"
]
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true
},
"dependencies": {
"koa-joi-router": "^6.0.2"
},
"devDependencies": {
"@types/jest": "^26.0.8",
"@types/koa": "^2.11.3",
"@types/koa-joi-router": "^5.2.3",
"@types/qs": "^6.9.4",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^7.6.0",
"jest": "^26.2.2",
"koa": "^2.13.0",
"supertest": "^4.0.2",
"ts-jest": "^26.1.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}